Yury Selivanov

Results 403 comments of Yury Selivanov

When we find a volunteer to implement it ;)

@brickgao As far as I know no one is.

I don't think Windows supports signals, so you should probably add checks like `if not __WINDOWS__` around code that touches `loop.py_signals` and `loop.uv_signals`.

@brickgao Do you think we should find more people to look into this problem?

@schlamar You should have looked at uvloop source code first, before assuming that we don't know some basic libuv APIs. @brickgao Sorry for the delayed reply. For signals specifically I...

Your PR looks very good, thanks a lot for working on this. I believe we don't need to do anything special for signals or forks. As for `dup`, I'll fix...

> What do you plan for dup? Just to remove it completely. Right now it's there to save uvloop from segfaulting when someone uses sockets from transports with add_writer API.

> @1st1 I've fixed sendfile support on aiohttp master. Super cool! Thanks! > Funny fact: on travis dupped socket was in blocking mode. Wow. Maybe this is something worth investigating?...

@iceb0y In the latest version of uvloop I've redesigned how signals are implemented. No more libuv or system API calls, I now only use Python's `signal` module. This should help...

FWIW I'm working on to add Windows support in https://github.com/MagicStack/uvloop/tree/win. Any help is welcome.