summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-07-23 20:04:41 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-07-23 20:04:41 (GMT)
commite02891b459b6a903b71dce1dfb1399419eaefaaf (patch)
tree2cc4bec3fa7b826cc952c256b0e8f0f12c0e5d67 /Misc
parent664091be72c8b1620cea239bf8ae0be19570709d (diff)
parentab85ff3d1a35011d09fc2e6a25a02d65f798bde4 (diff)
downloadcpython-e02891b459b6a903b71dce1dfb1399419eaefaaf.zip
cpython-e02891b459b6a903b71dce1dfb1399419eaefaaf.tar.gz
cpython-e02891b459b6a903b71dce1dfb1399419eaefaaf.tar.bz2
Issue #12591: Improve support of "universal newlines" in the subprocess
module: the piped streams can now be properly read from or written to.
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 089b07a..74da530 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -237,6 +237,9 @@ Core and Builtins
Library
-------
+- Issue #12591: Improve support of "universal newlines" in the subprocess
+ module: the piped streams can now be properly read from or written to.
+
- Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without
a read1() method), and add a *write_through* parameter to mandate
unbuffered writes.