[issue23173] asyncio: kill the subprocess if the creation failed

2015-01-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1eae3b6fbec6 by Victor Stinner in branch '3.4': Python issue #23173: sync with Tulip https://hg.python.org/cpython/rev/1eae3b6fbec6 -- nosy: +python-dev ___ Python tracker

[issue23173] asyncio: kill the subprocess if the creation failed

2015-01-13 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue23173] asyncio: kill the subprocess if the creation failed

2015-01-05 Thread STINNER Victor
New submission from STINNER Victor: The creation of a subprocess in asyncio is complex, it is composed of multiple steps (callbacks scheduled by call_soon, coroutines, etc.). The creation can fail because of different reasons. I guess that the most common reason is a cancellation of a task, ex