- 
                Notifications
    You must be signed in to change notification settings 
- Fork 583
Closed as duplicate of#561
Labels
Description
Thanks to the developers of the uvloop project, this performance improvement is really exciting. However, when I tested the project with uvloop, I found that the methods sock_sendto and sock_recvfrom are not yet implemented in uvloop. In asyncio, these two methods are supported in python 3.11, and they are frequently used in some frameworks and low-level network function development. I hope uvloop can add support for these two methods. Thanks to the developers of the uvloop project.
`    @cython.iterable_coroutine
async def sock_recvfrom(self, sock, bufsize):
raise NotImplementedError
@cython.iterable_coroutine
async def sock_recvfrom_into(self, sock, buf, nbytes=0):
    raise NotImplementedError
@cython.iterable_coroutine
async def sock_sendto(self, sock, data, address):
    raise NotImplementedError`