aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpenguindustin <penguindustin@gmail.com>2019-05-06 14:57:17 -0400
committerStéphane Wirtel <stephane@wirtel.be>2019-05-06 14:57:17 -0400
commit964663089547ca110199e23867b46b07ff4be88c (patch)
tree7936a6abc5e5c20058b4f51dbd8379eb4658e42d /Lib/lib2to3
parentbpo-36275: enhance documentation for venv.create() (GH-13114) (diff)
downloadcpython-964663089547ca110199e23867b46b07ff4be88c.tar.gz
cpython-964663089547ca110199e23867b46b07ff4be88c.tar.bz2
cpython-964663089547ca110199e23867b46b07ff4be88c.zip
bpo-36766: Typos in docs and code comments (GH-13116)
Diffstat (limited to 'Lib/lib2to3')
-rw-r--r--Lib/lib2to3/pgen2/tokenize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/pgen2/tokenize.py b/Lib/lib2to3/pgen2/tokenize.py
index c07b34f7c64..279d322971d 100644
--- a/Lib/lib2to3/pgen2/tokenize.py
+++ b/Lib/lib2to3/pgen2/tokenize.py
@@ -321,7 +321,7 @@ def untokenize(iterable):
Round-trip invariant for full input:
Untokenized source will match input source exactly
- Round-trip invariant for limited intput:
+ Round-trip invariant for limited input:
# Output text will tokenize the back to the input
t1 = [tok[:2] for tok in generate_tokens(f.readline)]
newcode = untokenize(t1)