diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-03 18:45:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-03 18:45:09 (GMT) |
commit | 91ce0d933c1a993db23994c1ea53d7a666dce96c (patch) | |
tree | ce340a9d9e16f4410c132b93d3f4ca1d5a1952cf /Misc | |
parent | 513c4f8fdd663fc4e85b6da4fdbaf466c137d0dd (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |