summaryrefslogtreecommitdiff
path: root/Doc/library/fileinput.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-03-08 18:28:36 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2016-03-08 18:28:36 +0200
commit9d2efe46b0b370a51cfc44bac527782ad89be94e (patch)
tree739c9693feb13950ec0ef58d1045f32c18c861c0 /Doc/library/fileinput.rst
parent34fc865ae917e4d689ffa9c12ffa9b3599d47871 (diff)
downloadcpython-9d2efe46b0b370a51cfc44bac527782ad89be94e.tar.gz
Issue #15068: Got rid of excessive buffering in the fileinput module.
The bufsize parameter is no longer used.
Diffstat (limited to 'Doc/library/fileinput.rst')
-rw-r--r--Doc/library/fileinput.rst8
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/library/fileinput.rst b/Doc/library/fileinput.rst
index ee06830ad8..9510f76332 100644
--- a/Doc/library/fileinput.rst
+++ b/Doc/library/fileinput.rst
@@ -71,6 +71,9 @@ The following function is the primary interface of this module:
.. versionchanged:: 3.2
Can be used as a context manager.
+ .. versionchanged:: 3.5.2
+ The *bufsize* parameter is no longer used.
+
The following functions use the global state created by :func:`fileinput.input`;
if there is no active state, :exc:`RuntimeError` is raised.
@@ -161,7 +164,10 @@ available for subclassing as well:
Can be used as a context manager.
.. deprecated:: 3.4
- The ``'rU'`` and ``'U'`` modes.
+ The ``'rU'`` and ``'U'`` modes.
+
+ .. versionchanged:: 3.5.2
+ The *bufsize* parameter is no longer used.
**Optional in-place filtering:** if the keyword argument ``inplace=True`` is