mirror of https://github.com/python/cpython
Fix typo in the tokenizer (#104950)
This commit is contained in:
parent
bd1b6228d1
commit
705e387dd8
|
@ -21,7 +21,7 @@ enum decoding_state {
|
||||||
};
|
};
|
||||||
|
|
||||||
enum interactive_underflow_t {
|
enum interactive_underflow_t {
|
||||||
/* Normal mode of operation: return a new token when asked in interactie mode */
|
/* Normal mode of operation: return a new token when asked in interactive mode */
|
||||||
IUNDERFLOW_NORMAL,
|
IUNDERFLOW_NORMAL,
|
||||||
/* Forcefully return ENDMARKER when asked for a new token in interactive mode. This
|
/* Forcefully return ENDMARKER when asked for a new token in interactive mode. This
|
||||||
* can be used to prevent the tokenizer to prompt the user for new tokens */
|
* can be used to prevent the tokenizer to prompt the user for new tokens */
|
||||||
|
|
Loading…
Reference in New Issue