summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-11-11 06:34:18 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-11-11 06:34:18 (GMT)
commit099717b73b0b1d0c9dd4aacb91f6932235b799d0 (patch)
tree7e9f771cd612fb18bd6ad70dc288dda69e057bca /Misc
parentdd0edae1ccef6e0c4ee3338f094ad9d162650360 (diff)
parent561cbc4e7bdf457bb64acf8ef7e5358795816c88 (diff)
downloadcpython-099717b73b0b1d0c9dd4aacb91f6932235b799d0.zip
cpython-099717b73b0b1d0c9dd4aacb91f6932235b799d0.tar.gz
cpython-099717b73b0b1d0c9dd4aacb91f6932235b799d0.tar.bz2
Fixes issue #16327: The subprocess module no longer leaks file descriptors
used for stdin/stdout/stderr pipes to the child when fork() fails.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3e0ea40..2187c80 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -116,6 +116,9 @@ Core and Builtins
Library
-------
+- Issue #16327: The subprocess module no longer leaks file descriptors
+ used for stdin/stdout/stderr pipes to the child when fork() fails.
+
- Issue #14396: Handle the odd rare case of waitpid returning 0 when not
expected in subprocess.Popen.wait().