diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-23 20:03:45 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-23 20:03:45 (GMT) |
commit | ab85ff3d1a35011d09fc2e6a25a02d65f798bde4 (patch) | |
tree | 63bbca00811b84e7be43df34c9f277434c9d8eb0 /Misc | |
parent | e96ec6810184f5daacb2d47ab8801365c99bb206 (diff) | |
download | cpython-ab85ff3d1a35011d09fc2e6a25a02d65f798bde4.zip cpython-ab85ff3d1a35011d09fc2e6a25a02d65f798bde4.tar.gz cpython-ab85ff3d1a35011d09fc2e6a25a02d65f798bde4.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.
(this was broken due to the 2.x to 3.x transition; communicate() support
is still sketchy)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -37,6 +37,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 an undocumented *write_through* parameter to mandate unbuffered writes. |