diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-09-29 18:53:08 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-09-29 18:53:08 (GMT) |
commit | 02dee1acd8d905a2348e5ed4d9f97cb490e5e255 (patch) | |
tree | 36841ec3c83b8a590a9908b783613c9c28c64d48 /Misc | |
parent | cff1c6f66555ced39ab8c5cff61a0872015dee7a (diff) | |
parent | 3905171f1ea778c60c74dd4b0318b894eda94d7f (diff) | |
download | cpython-02dee1acd8d905a2348e5ed4d9f97cb490e5e255.zip cpython-02dee1acd8d905a2348e5ed4d9f97cb490e5e255.tar.gz cpython-02dee1acd8d905a2348e5ed4d9f97cb490e5e255.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -13,6 +13,10 @@ Core and Builtins 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. + What's New in Python 3.3.0? =========================== |