summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-03-08 16:28:36 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-03-08 16:28:36 (GMT)
commitcc2dbc5844929da1f89e3f548a8d1312b4f0ba0e (patch)
treebf1373b8718d55fb2ec54f190d0b390ab54947bf /Misc
parent55e3218eee49260a68de9c5a85549e1c719038ca (diff)
downloadcpython-cc2dbc5844929da1f89e3f548a8d1312b4f0ba0e.zip
cpython-cc2dbc5844929da1f89e3f548a8d1312b4f0ba0e.tar.gz
cpython-cc2dbc5844929da1f89e3f548a8d1312b4f0ba0e.tar.bz2
Issue #15068: Got rid of excessive buffering in the fileinput module.
The bufsize parameter is no longer used.
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 3043456..e88938c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -91,6 +91,9 @@ Core and Builtins
Library
-------
+- Issue #15068: Got rid of excessive buffering in the fileinput module.
+ The bufsize parameter is no longer used.
+
- Issue #2202: Fix UnboundLocalError in
AbstractDigestAuthHandler.get_algorithm_impls. Initial patch by Mathieu Dupuy.