commit | c9ccacea3ff441b1ff519c7399602b7db16f9783 | [log] [tgz] |
---|---|---|
author | Albert-Jan Nijburg <albertjan@trinket.io> | Thu Jun 01 21:51:27 2017 +0100 |
committer | Mariatta <Mariatta@users.noreply.github.com> | Thu Jun 01 13:51:27 2017 -0700 |
tree | d9314ce5b19eb6efd1248dec1cc3bff448363bd1 | |
parent | b63530a94b4086abc59c87f95a78b5ce914682fe [diff] |
bpo-25324: add missing comma in Parser/tokenizer.c (GH-1910)
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 7f2f3e6..51f98e9 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c
@@ -108,7 +108,7 @@ "<ERRORTOKEN>", "COMMENT", "NL", - "ENCODING" + "ENCODING", "<N_TOKENS>" };