diff options
author | Stepfen Shawn <m18824909883@163.com> | 2023-05-26 02:50:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-26 02:50:33 (GMT) |
commit | 705e387dd81b971cb1ee5727da54adfb565f61d0 (patch) | |
tree | 27b935d691f877ecdc0b2302d51c1736d678fbaf /Parser | |
parent | bd1b6228d132b8e9836fe352cd8dca2b6c1bd98c (diff) | |
download | cpython-705e387dd81b971cb1ee5727da54adfb565f61d0.zip cpython-705e387dd81b971cb1ee5727da54adfb565f61d0.tar.gz cpython-705e387dd81b971cb1ee5727da54adfb565f61d0.tar.bz2 |
Fix typo in the tokenizer (#104950)
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/tokenizer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h index 3f34763..019f533 100644 --- a/Parser/tokenizer.h +++ b/Parser/tokenizer.h @@ -21,7 +21,7 @@ enum decoding_state { }; 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, /* 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 */ |