bpo-25324: add missing comma in Parser/tokenizer.c (GH-1910)

This commit is contained in:
Albert-Jan Nijburg 2017-06-01 21:51:27 +01:00 committed by Mariatta
parent b63530a94b
commit c9ccacea3f

View file

@ -108,7 +108,7 @@ const char *_PyParser_TokenNames[] = {
"<ERRORTOKEN>",
"COMMENT",
"NL",
"ENCODING"
"ENCODING",
"<N_TOKENS>"
};