From: Tim Gates Date: Thu, 7 Nov 2019 20:57:39 +0000 (+1100) Subject: Fix simple typo: intput -> input (#1146) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/de6f4b1f6bd3211e80bc5a5f1f88e6ef69a550aa?ds=inline;pf=etc Fix simple typo: intput -> input (#1146) Fixes #1147 --- diff --git a/blib2to3/pgen2/tokenize.py b/blib2to3/pgen2/tokenize.py index 9fac9b6..6b6f76f 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)