summaryrefslogtreecommitdiffstats
path: root/Doc/library/shlex.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-29 04:13:35 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-29 04:13:35 (GMT)
commit8d56c026a5dd724318be005465366d5140fa6fe7 (patch)
tree9e1efdce69034e7c5088bcf176a7bcf5144c560f /Doc/library/shlex.rst
parente8a175eaa067d0f434933d2f003260a6d739c2d1 (diff)
downloadcpython-8d56c026a5dd724318be005465366d5140fa6fe7.zip
cpython-8d56c026a5dd724318be005465366d5140fa6fe7.tar.gz
cpython-8d56c026a5dd724318be005465366d5140fa6fe7.tar.bz2
Issue #27125: Fix various errors like “will [be] inherited”
Diffstat (limited to 'Doc/library/shlex.rst')
-rw-r--r--Doc/library/shlex.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/shlex.rst b/Doc/library/shlex.rst
index e40a10d..bf54318 100644
--- a/Doc/library/shlex.rst
+++ b/Doc/library/shlex.rst
@@ -244,7 +244,8 @@ variables which either control lexical analysis or can be used for debugging:
This attribute is ``None`` by default. If you assign a string to it, that
string will be recognized as a lexical-level inclusion request similar to the
``source`` keyword in various shells. That is, the immediately following token
- will opened as a filename and input taken from that stream until EOF, at which
+ will be opened as a filename and input will
+ be taken from that stream until EOF, at which
point the :meth:`~io.IOBase.close` method of that stream will be called and
the input source will again become the original input stream. Source
requests may be stacked any number of levels deep.