[issue32661] ProactorEventLoop locks up on close call

2019-01-15 Thread STINNER Victor
STINNER Victor added the comment: bug.py calls loop.run_forever() but nothing calls stops the loop. If you add loop.stop() to handle_incoming_connection(), the script exits properly as soon as a client connects and sends some data. > 3. I press Ctrl-C in the DOS window. Nothing happens. Th

[issue32661] ProactorEventLoop locks up on close call

2018-01-29 Thread Antoine Pitrou
Change by Antoine Pitrou : -- versions: +Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue32661] ProactorEventLoop locks up on close call

2018-01-24 Thread Roger Taylor
New submission from Roger Taylor : The following problem only occurs when I use ProactorEventLoop. If I use 'asyncio.get_event_loop()' it exits normally, rather than infinite looping in IOCP land. 1. I run the attached 'bug.py' script in a DOS window. It is a slightly modified version of th