Re: [python-tulip] Bugfixes in the ProactorEventLoop

2015-01-27 Thread Guido van Rossum
On Tue, Jan 27, 2015 at 9:09 AM, Victor Stinner wrote: > The ProactorEventLoop still lacks some features: UDP and signal handling. > https://docs.python.org/dev/library/asyncio-eventloops.html#windows > > add_reader() and add_writer() are not supported, but I'm not sure that > it's possible to im

Re: [python-tulip] Bugfixes in the ProactorEventLoop

2015-01-27 Thread Ludovic Gasc
Hi, Thank you Victor. I've a development in few weeks on Windows, I'll use that with Qt for rendering. Regards. Ludovic Gasc (GMLudo) On 27 Jan 2015 18:10, "Victor Stinner" wrote: > Hi, > > The ProactorEventLoop still lacks some features: UDP and signal handling. > https://docs.python.org/dev

Re: [python-tulip] Bugfixes in the ProactorEventLoop

2015-01-27 Thread Victor Stinner
Hi, The ProactorEventLoop still lacks some features: UDP and signal handling. https://docs.python.org/dev/library/asyncio-eventloops.html#windows add_reader() and add_writer() are not supported, but I'm not sure that it's possible to implement them. They don't fit into IOCP design (being notified

Re: [python-tulip] Bugfixes in the ProactorEventLoop

2015-01-27 Thread Guido van Rossum
Thanks for your work Victor! I occasionally get questions about asyncio's stability on Windows. I am now much more confident. On Mon, Jan 26, 2015 at 3:38 PM, Victor Stinner wrote: > Hi, > > I spent last weeks on fixing issues specific to the Windows > ProactorEventLoop. Even if the code "was wo

[python-tulip] Bugfixes in the ProactorEventLoop

2015-01-26 Thread Victor Stinner
Hi, I spent last weeks on fixing issues specific to the Windows ProactorEventLoop. Even if the code "was working" in most cases, sometimes, I noticed strange warnings, bugs or crashs. Good news: all known issues are now fixed, and the test suite now pass and is stable! Please test ProactorEventLo