diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-23 19:46:35 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-23 19:46:35 (GMT) |
commit | e96ec6810184f5daacb2d47ab8801365c99bb206 (patch) | |
tree | 39473d0363b97a0f92fa50e512125041cecc6296 /Misc | |
parent | ce7e51e8f615e6bc7dec1b33b23b1414c6dc27ea (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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). |