summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-07-23 19:46:35 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-07-23 19:46:35 (GMT)
commite96ec6810184f5daacb2d47ab8801365c99bb206 (patch)
tree39473d0363b97a0f92fa50e512125041cecc6296 /Misc
parentce7e51e8f615e6bc7dec1b33b23b1414c6dc27ea (diff)
downloadcpython-e96ec6810184f5daacb2d47ab8801365c99bb206.zip
cpython-e96ec6810184f5daacb2d47ab8801365c99bb206.tar.gz
cpython-e96ec6810184f5daacb2d47ab8801365c99bb206.tar.bz2
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.
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 8d11ca4..2eea1be 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,10 @@ Core and Builtins
Library
-------
+- 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.
+
- Issue #10883: Fix socket leaks in urllib.request when using FTP.
- Issue #12592: Make Python build on OpenBSD 5 (and future major releases).