Signal handling is not implemented in asyncio on Windows. I have working
patch for that somewhere, it's not merged yet.
UDP and SSL are also missing on Windows. Good news: SSL support comes with
Python 3.5!
Victor
Le 4 juil. 2015 09:55, "Terry Reedy" a écrit :
> Should the loop.run... methods
On 7/4/2015 4:06 PM, Andrew Svetlov wrote:
I believe it's a bug #23057 http://bugs.python.org/issue23057
On Sat, Jul 4, 2015 at 10:58 PM, Guido van Rossum wrote:
It's possible, but AFAIK asyncio.sleep() has nothing in common with
time.sleep() -- it's implemented as a timeout on select() or on
I believe it's a bug #23057 http://bugs.python.org/issue23057
On Sat, Jul 4, 2015 at 10:58 PM, Guido van Rossum wrote:
> It's possible, but AFAIK asyncio.sleep() has nothing in common with
> time.sleep() -- it's implemented as a timeout on select() or on the IOCP
> loop. (I also have no access to
It's possible, but AFAIK asyncio.sleep() has nothing in common with
time.sleep() -- it's implemented as a timeout on select() or on the IOCP
loop. (I also have no access to Windows ATM.)
On Sat, Jul 4, 2015 at 7:49 PM, R. David Murray
wrote:
> Once long ago in Internet time (issue 581232) time.s
Once long ago in Internet time (issue 581232) time.sleep on windows was
not interruptible and this was fixed. Is it possible the work on EINTR
has broken that fix?
(I don't currently have 3.5 installed on windows to test that theory...)
On Sat, 04 Jul 2015 17:46:34 +0200, Guido van Rossum wrote
I think this may be more of a Windows issue than an asyncio issue. I agree
that ideally ^C should take effect immediately (as it does on UNIX).
On Sat, Jul 4, 2015 at 9:54 AM, Terry Reedy wrote:
> Should the loop.run... methods of asyncio respect KeyboardInterrupt (^C)?
>
> Developer and user co
Should the loop.run... methods of asyncio respect KeyboardInterrupt (^C)?
Developer and user convenience and this paragraph in PEP
"However, exceptions deriving only from BaseException are typically not
caught, and will usually cause the program to terminate with a
traceback. In some cases the