From: Gregory P. Smith Date: Sat, 29 Sep 2012 18:55:16 +0000 (-0700) Subject: Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILD to X-Git-Tag: v3.4.0a1~2470 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=288d9aec4b7df78cebf47dc8c12b7a93cc1a0faa;p=thirdparty%2FPython%2Fcpython.git Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILD to return a returncode of 0 when the child has already exited or cannot be waited on. --- 288d9aec4b7df78cebf47dc8c12b7a93cc1a0faa diff --cc Misc/NEWS index 248b79ccc3f7,245cf1a677e0..0012f1ea6695 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -15,9 -13,10 +15,13 @@@ Core and Builtin Library ------- + - Issue #15756: subprocess.poll() now properly handles errno.ECHILD to + return a returncode of 0 when the child has already exited or cannot + be waited on. + +Extension Modules +----------------- + What's New in Python 3.3.0? ===========================