From de6f4b1f6bd3211e80bc5a5f1f88e6ef69a550aa Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 8 Nov 2019 07:57:39 +1100 Subject: [PATCH] Fix simple typo: intput -> input (#1146) Fixes #1147 --- blib2to3/pgen2/tokenize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blib2to3/pgen2/tokenize.py b/blib2to3/pgen2/tokenize.py index 9fac9b62847..6b6f76f8008 100644 --- a/blib2to3/pgen2/tokenize.py +++ b/blib2to3/pgen2/tokenize.py @@ -389,7 +389,7 @@ def untokenize(iterable: Iterable[TokenInfo]) -> Text: 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)