Message294957
We got a bug report from Coverity:
*** CID 1411801: Incorrect expression (MISSING_COMMA)
/Parser/tokenizer.c: 111 in ()
105 "OP",
106 "AWAIT",
107 "ASYNC",
108 "<ERRORTOKEN>",
109 "COMMENT",
110 "NL",
>>> CID 1411801: Incorrect expression (MISSING_COMMA)
>>> In the initialization of "_PyParser_TokenNames", a suspicious concatenated string ""ENCODING<N_TOKENS>"" is produced.
111 "ENCODING"
112 "<N_TOKENS>"
113 };
114
115
116 /* Create and initialize a new tok_state structure */
I missed this typo :-p |
|
Date |
User |
Action |
Args |
2017-06-01 17:08:45 | vstinner | set | recipients:
+ vstinner, georg.brandl, meador.inge, martin.panter, serhiy.storchaka, josephgordon, Albert-Jan Nijburg |
2017-06-01 17:08:45 | vstinner | set | messageid: <1496336925.25.0.685126259038.issue25324@psf.upfronthosting.co.za> |
2017-06-01 17:08:45 | vstinner | link | issue25324 messages |
2017-06-01 17:08:44 | vstinner | create | |
|