You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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
The text was updated successfully, but these errors were encountered: