[issue17018] Inconsistent behaviour of methods waiting for child process

2013-06-20 Thread Richard Oudkerk
Changes by Richard Oudkerk : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue17018] Inconsistent behaviour of methods waiting for child process

2013-02-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 92003d9aae0e by Richard Oudkerk in branch '2.7': Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR. http://hg.python.org/cpython/rev/92003d9aae0e New changeset 5fae31006724 by Richard Oudkerk in branch '3.2': Issue #17018: Mak

[issue17018] Inconsistent behaviour of methods waiting for child process

2013-01-23 Thread Richard Oudkerk
Changes by Richard Oudkerk : -- nosy: +sbt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue17018] Inconsistent behaviour of methods waiting for child process

2013-01-23 Thread Jakub Wilk
Changes by Jakub Wilk : -- nosy: +jwilk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue17018] Inconsistent behaviour of methods waiting for child process

2013-01-23 Thread Marcin Szewczyk
New submission from Marcin Szewczyk: I've done some experiments with: 1) multiprocessing.Process.join() 2) os.waitpid() 3) subprocess.Popen.wait() These three methods behave completely different when interrupted with a signal which I find disturbing. Reactions are: 1) exit with no exception or