summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorStepfen Shawn <m18824909883@163.com>2023-05-26 02:50:33 (GMT)
committerGitHub <noreply@github.com>2023-05-26 02:50:33 (GMT)
commit705e387dd81b971cb1ee5727da54adfb565f61d0 (patch)
tree27b935d691f877ecdc0b2302d51c1736d678fbaf /Parser
parentbd1b6228d132b8e9836fe352cd8dca2b6c1bd98c (diff)
downloadcpython-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.h2
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 */