summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-07-23 19:50:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-07-23 19:50:21 (GMT)
commitd42c1d09e99d74f6b411bdb1d3c8b9a648dd6a79 (patch)
treead9943d40fcf0ab23ae4d5ddeaacb71afab0d433 /Misc
parentf23339a7bb9d9fe977de6d90c64e3c9a27e6b00b (diff)
parente96ec6810184f5daacb2d47ab8801365c99bb206 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 282425d..089b07a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).