[issue34073] asyncio and ProcessPoolExecutor: OSError on loop.close()

2018-07-09 Thread Yury Selivanov
Yury Selivanov added the comment: We plan to deprecate and later prohibit setting ProcessPoolExecutor as the default executor. See https://bugs.python.org/issue34075 for more details. -- resolution: -> remind stage: -> resolved status: open -> closed __

[issue34073] asyncio and ProcessPoolExecutor: OSError on loop.close()

2018-07-08 Thread Julien Palard
Julien Palard added the comment: Can reproduce with 3.7.0 on Linux. -- nosy: +mdk ___ Python tracker ___ ___ Python-bugs-list maili

[issue34073] asyncio and ProcessPoolExecutor: OSError on loop.close()

2018-07-08 Thread Jon Banafato
New submission from Jon Banafato : Calling loop.close() on an eventloop configured to use a ProcessPoolExecutor can result in an OSError. Expected behavior: no exception raised. Actual behavior: an OSError is raised, and following this call, quit() fails to terminate the process gracefully.