summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-09-29 18:55:16 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-09-29 18:55:16 (GMT)
commit288d9aec4b7df78cebf47dc8c12b7a93cc1a0faa (patch)
tree6875caa4aac01f9b8de98797dffd7ee50184fe87 /Misc
parent1ed3ffebb9654622dc1089808ff95fadb84eda25 (diff)
parent02dee1acd8d905a2348e5ed4d9f97cb490e5e255 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 248b79c..0012f1e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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
-----------------