summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-06-03 10:32:28 (GMT)
committerGitHub <noreply@github.com>2017-06-03 10:32:28 (GMT)
commit3c2817b6884a5fcf792197203f3c26b157210607 (patch)
tree36f32bf5581fb14a60257630be600cc1077a260c /Misc
parentae8750bca8234a9af9382b9d7e457b57f810ad64 (diff)
downloadcpython-3c2817b6884a5fcf792197203f3c26b157210607.zip
cpython-3c2817b6884a5fcf792197203f3c26b157210607.tar.gz
cpython-3c2817b6884a5fcf792197203f3c26b157210607.tar.bz2
Fix bpo-30526: Add TextIOWrapper.reconfigure() and a TextIOWrapper.write_through attribute (#1922)
* Fix bpo-30526: Add TextIOWrapper.reconfigure() * Apply Nick's improved wording * Update Misc/NEWS
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 902b102..e6e8f95 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -345,6 +345,9 @@ Extension Modules
Library
-------
+- bpo-30526: Add TextIOWrapper.reconfigure() and a TextIOWrapper.write_through
+ attribute.
+
- bpo-30245: Fix possible overflow when organize struct.pack_into
error message. Patch by Yuan Liu.