summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-05-08 22:24:50 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-05-08 22:24:50 (GMT)
commitc644e7c39f7adf0ed783e128b0278665133bf523 (patch)
tree85a2c3c546b5b9f3c189ef45d4c6b5b932af7d60 /Misc
parenta83ade1d60a18d7cf2f96f9e059947a770c491ee (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS6
2 files changed, 7 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 4068836..75fb706 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -24,6 +24,7 @@ Jim Ahlstrom
Farhan Ahmad
Matthew Ahrens
Nir Aides
+Akira
Yaniv Aknin
Jyrki Alakuijala
Steve Alexander
diff --git a/Misc/NEWS b/Misc/NEWS
index 96f3cb7..29634fc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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
-----