mirror of https://github.com/python/cpython
bpo-25324: add missing comma in Parser/tokenizer.c (GH-1910)
This commit is contained in:
parent
b63530a94b
commit
c9ccacea3f
|
@ -108,7 +108,7 @@ const char *_PyParser_TokenNames[] = {
|
|||
"<ERRORTOKEN>",
|
||||
"COMMENT",
|
||||
"NL",
|
||||
"ENCODING"
|
||||
"ENCODING",
|
||||
"<N_TOKENS>"
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue