diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-23 19:50:21 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-23 19:50:21 (GMT) |
commit | d42c1d09e99d74f6b411bdb1d3c8b9a648dd6a79 (patch) | |
tree | ad9943d40fcf0ab23ae4d5ddeaacb71afab0d433 /Misc | |
parent | f23339a7bb9d9fe977de6d90c64e3c9a27e6b00b (diff) | |
parent | e96ec6810184f5daacb2d47ab8801365c99bb206 (diff) | |
download | cpython-d42c1d09e99d74f6b411bdb1d3c8b9a648dd6a79.zip cpython-d42c1d09e99d74f6b411bdb1d3c8b9a648dd6a79.tar.gz cpython-d42c1d09e99d74f6b411bdb1d3c8b9a648dd6a79.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -237,6 +237,10 @@ Core and Builtins Library ------- +- 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. + - Issue #10883: Fix socket leaks in urllib.request when using FTP. - Issue #12592: Make Python build on OpenBSD 5 (and future major releases). |