diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-09-29 18:55:16 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-09-29 18:55:16 (GMT) |
commit | 288d9aec4b7df78cebf47dc8c12b7a93cc1a0faa (patch) | |
tree | 6875caa4aac01f9b8de98797dffd7ee50184fe87 /Misc | |
parent | 1ed3ffebb9654622dc1089808ff95fadb84eda25 (diff) | |
parent | 02dee1acd8d905a2348e5ed4d9f97cb490e5e255 (diff) | |
download | cpython-288d9aec4b7df78cebf47dc8c12b7a93cc1a0faa.zip cpython-288d9aec4b7df78cebf47dc8c12b7a93cc1a0faa.tar.gz cpython-288d9aec4b7df78cebf47dc8c12b7a93cc1a0faa.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
@@ -15,6 +15,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. + Extension Modules ----------------- |