diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-03-08 16:28:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-03-08 16:28:36 (GMT) |
commit | cc2dbc5844929da1f89e3f548a8d1312b4f0ba0e (patch) | |
tree | bf1373b8718d55fb2ec54f190d0b390ab54947bf /Doc/library/fileinput.rst | |
parent | 55e3218eee49260a68de9c5a85549e1c719038ca (diff) | |
download | cpython-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 'Doc/library/fileinput.rst')
-rw-r--r-- | Doc/library/fileinput.rst | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/library/fileinput.rst b/Doc/library/fileinput.rst index ee06830..9510f76 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 |