summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-12-25 22:40:32 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-12-25 22:40:32 (GMT)
commit667d4b577f576323628d97f7b2ed421a2a05322f (patch)
tree471c8afeed8fbad2ae908ff52661742b886a51d9 /Misc
parent291151b7f401be9f38de36664f0f3c0a60829a6e (diff)
downloadcpython-667d4b577f576323628d97f7b2ed421a2a05322f.zip
cpython-667d4b577f576323628d97f7b2ed421a2a05322f.tar.gz
cpython-667d4b577f576323628d97f7b2ed421a2a05322f.tar.bz2
Issue #10763: subprocess.communicate() closes stdout and stderr if both are
pipes (bug specific to Windows). Improve also the unit test: write a portable unit test.
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 7b6d2d1..88dd836 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,9 @@ Core and Builtins
Library
-------
+- Issue #10763: subprocess.communicate() closes stdout and stderr if both are
+ pipes (bug specific to Windows).
+
- Issue #1693546: fix email.message RFC 2231 parameter encoding to be in better
compliance (no "s around encoded values).