]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in the tokenizer (#104950)
authorStepfen Shawn <m18824909883@163.com>
Fri, 26 May 2023 02:50:33 +0000 (10:50 +0800)
committerGitHub <noreply@github.com>
Fri, 26 May 2023 02:50:33 +0000 (02:50 +0000)
Parser/tokenizer.h

index 3f34763239acdaa075db09d12a34c1c259f62ff3..019f533ef2a2601671ecd96f82ef72110e9534fb 100644 (file)
@@ -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 */