Yury Selivanov

Results 403 comments of Yury Selivanov

Sounds like the 17000 port is used by something else on that particular server. And most likely aiohttp has some timeout/retry logic in place and waits for it to become...

Once PyPy implements Python 3.5 and is stable, we'll look into this. Theoretically, it's not that difficult to rewrite uvloop with pure Python + CFFI.

NP. Let's keep this issue open, as this question periodically comes up.

Referencing another discussion: https://github.com/MagicStack/uvloop/issues/82

> I think exposing a busyness factor from the event loop would be a very interesting notion. Something like the percentage of the time in the last n seconds or...

Fixable by submitting a PR to libuv to allow higher resolution timers on platforms that support that. That's very doable (maybe you can work on a PR?) just might take...

Unfortunately, the libuv's sendfile implementation is just a thin wrapper over the "sendfile" system call. I.e. `uv_fs_sendfile()` is not integrated with `uv_tcp_t` handles, so it's very similar to Python's `os.sendfile()`....

> Such behavior is not observed with default event loop. It will be in 3.8 or later. You're using an undocumented way of shutdowning the socket bypassing the top-level transport...