[issue19309] asyncio: fix handling of processes in a different process group

2013-10-20 Thread Charles-François Natali
Charles-François Natali added the comment: Committed! (The retry loop is addressed in another issue). -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue19309] asyncio: fix handling of processes in a different process group

2013-10-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4cdb9f04494b by Charles-François Natali in branch 'default': Issue #19309: asyncio: make waitpid() wait for all child processes, not only http://hg.python.org/cpython/rev/4cdb9f04494b -- nosy: +python-dev ___

[issue19309] asyncio: fix handling of processes in a different process group

2013-10-20 Thread Guido van Rossum
Guido van Rossum added the comment: I added an LGTM plus a pointer to http://code.google.com/p/tulip/issues/detail?id=68 -- ___ Python tracker ___ __

[issue19309] asyncio: fix handling of processes in a different process group

2013-10-20 Thread Charles-François Natali
New submission from Charles-François Natali: See https://groups.google.com/forum/#!topic/python-tulip/9T2_tGWe0Sc The attached patch just changes waitpid(0) to waitpid(-1), and comes with a trivial test. -- components: Library (Lib) files: asyncio_process_group.diff keywords: easy, nee