[Python-checkins] Fix typo in the tokenizer (#104950)

pablogsal webhook-mailer at python.org
Thu May 25 22:50:54 EDT 2023


https://github.com/python/cpython/commit/705e387dd81b971cb1ee5727da54adfb565f61d0
commit: 705e387dd81b971cb1ee5727da54adfb565f61d0
branch: main
author: Stepfen Shawn <m18824909883 at 163.com>
committer: pablogsal <Pablogsal at gmail.com>
date: 2023-05-26T02:50:33Z
summary:

Fix typo in the tokenizer (#104950)

files:
M Parser/tokenizer.h

diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h
index 3f34763239ac..019f533ef2a2 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 */



More information about the Python-checkins mailing list