summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-03 18:45:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-03 18:45:09 (GMT)
commit91ce0d933c1a993db23994c1ea53d7a666dce96c (patch)
treece340a9d9e16f4410c132b93d3f4ca1d5a1952cf /Misc
parent513c4f8fdd663fc4e85b6da4fdbaf466c137d0dd (diff)
downloadcpython-91ce0d933c1a993db23994c1ea53d7a666dce96c.zip
cpython-91ce0d933c1a993db23994c1ea53d7a666dce96c.tar.gz
cpython-91ce0d933c1a993db23994c1ea53d7a666dce96c.tar.bz2
Merged revisions 87695 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87695 | antoine.pitrou | 2011-01-03 19:23:55 +0100 (lun., 03 janv. 2011) | 5 lines 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 9c900ff..c6faa12 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,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.
+
- Issue #4662: os.tempnam(), os.tmpfile() and os.tmpnam() now raise a py3k
DeprecationWarning.