uvloop
uvloop copied to clipboard
Ultra fast asyncio event loop.
Helps https://github.com/MagicStack/uvloop/issues/635
I have been brainstorming ways of going about optimizing some objects in uvloop and winloop's code and I think I have an idea for making these objects run slightly faster...
## Summary When using an `asyncio.Event()` with `loop.add_reader()` to asynchronously read from a `multiprocessing.Pipe`, the call to `recv_bytes()` throws: ``` Process reader: Traceback (most recent call last): File "/home/james/.pyenv/versions/3.13.5/lib/python3.13/multiprocessing/process.py", line...
# TCP Transport RuntimeError with Python 3.13 + uvloop ## Summary uvloop is causing `RuntimeError: unable to perform operation on ` errors when used with Python 3.13. Switching to `--loop...