summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-03 18:23:55 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-03 18:23:55 (GMT)
commitc9c83ba8969c166f617da24c6af54a479373adf9 (patch)
treecb3e91db6e838110339f8f16ee9c77c52a68ffec /Misc
parent63ebe1c3093bd40ea5a7e1a225ea0355f13563b4 (diff)
downloadcpython-c9c83ba8969c166f617da24c6af54a479373adf9.zip
cpython-c9c83ba8969c166f617da24c6af54a479373adf9.tar.gz
cpython-c9c83ba8969c166f617da24c6af54a479373adf9.tar.bz2
Issue #10806, issue #9905: Fix subprocess pipes when some of the standard
file descriptors (0, 1, 2) are closed in the parent process. Initial patch by Ross Lagerwall.
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 930b47e..899eab0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,10 @@ Core and Builtins
Library
-------
+- Issue #10806, issue #9905: Fix subprocess pipes when some of the standard
+ file descriptors (0, 1, 2) are closed in the parent process. Initial
+ patch by Ross Lagerwall.
+
- `unittest.TestCase` can be instantiated without a method name; for simpler
exploration from the interactive interpreter.