summaryrefslogtreecommitdiffstats
path: root/Doc/library/fileinput.rst
diff options
context:
space:
mode:
authorMichele Angrisano <michele.angrisano@gmail.com>2019-06-02 21:01:49 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2019-06-02 21:01:49 (GMT)
commitaca273e2401ca3151e15e984f400233b7f255e15 (patch)
treec7c71ce7031622dba71da3cd293464bc4436728d /Doc/library/fileinput.rst
parent3caf4de6f05f68c3a175f4d8ce870d7a0016622a (diff)
downloadcpython-aca273e2401ca3151e15e984f400233b7f255e15.zip
cpython-aca273e2401ca3151e15e984f400233b7f255e15.tar.gz
cpython-aca273e2401ca3151e15e984f400233b7f255e15.tar.bz2
bpo-37014: Update docstring and Documentation of fileinput.FileInput(). (GH-13545)
* bpo-37014: Update docstring and Documentation of fileinput.FileInput() * Explain the behavior of fileinput.FileInput() when reading stdin. * Update blurb. * bpo-37014: Fix typo in the docstring and documentation.
Diffstat (limited to 'Doc/library/fileinput.rst')
-rw-r--r--Doc/library/fileinput.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/fileinput.rst b/Doc/library/fileinput.rst
index 14be492..f5e5280 100644
--- a/Doc/library/fileinput.rst
+++ b/Doc/library/fileinput.rst
@@ -23,8 +23,9 @@ The typical use is::
This iterates over the lines of all files listed in ``sys.argv[1:]``, defaulting
to ``sys.stdin`` if the list is empty. If a filename is ``'-'``, it is also
-replaced by ``sys.stdin``. To specify an alternative list of filenames, pass it
-as the first argument to :func:`.input`. A single file name is also allowed.
+replaced by ``sys.stdin`` and the optional arguments *mode* and *openhook*
+are ignored. To specify an alternative list of filenames, pass it as the
+first argument to :func:`.input`. A single file name is also allowed.
All files are opened in text mode by default, but you can override this by
specifying the *mode* parameter in the call to :func:`.input` or