diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-05-08 22:24:50 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-05-08 22:24:50 (GMT) |
commit | c644e7c39f7adf0ed783e128b0278665133bf523 (patch) | |
tree | 85a2c3c546b5b9f3c189ef45d4c6b5b932af7d60 /Misc | |
parent | a83ade1d60a18d7cf2f96f9e059947a770c491ee (diff) | |
download | cpython-c644e7c39f7adf0ed783e128b0278665133bf523.zip cpython-c644e7c39f7adf0ed783e128b0278665133bf523.tar.gz cpython-c644e7c39f7adf0ed783e128b0278665133bf523.tar.bz2 |
Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream.
Patch by akira.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -24,6 +24,7 @@ Jim Ahlstrom Farhan Ahmad Matthew Ahrens Nir Aides +Akira Yaniv Aknin Jyrki Alakuijala Steve Alexander @@ -7,6 +7,12 @@ What's New in Python 3.4.1? Release date: TBA +Library +------- + +- Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a + flush() on the underlying binary stream. Patch by akira. + Tests ----- |