summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-03-08 16:35:45 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-03-08 16:35:45 (GMT)
commit69b7f812faf4c707a3e89b4d67c13ffb12a4bd16 (patch)
treecc5de07f7866bf578f87e62abc6c830bb55422e4 /Misc
parent2d80fb39054a8bfcc5a00c9ddd5315a06757acde (diff)
downloadcpython-69b7f812faf4c707a3e89b4d67c13ffb12a4bd16.zip
cpython-69b7f812faf4c707a3e89b4d67c13ffb12a4bd16.tar.gz
cpython-69b7f812faf4c707a3e89b4d67c13ffb12a4bd16.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 71cc689..2afab1c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -58,6 +58,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.