From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 26 May 2023 06:32:04 +0000 (-0700) Subject: [3.11] Fix typo in the tokenizer (GH-104950) (#104952) X-Git-Tag: v3.11.4~25 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b764347572c72a7bd9e9696fa1ad612a9cd1d54a;p=thirdparty%2FPython%2Fcpython.git [3.11] Fix typo in the tokenizer (GH-104950) (#104952) (cherry picked from commit 705e387dd81b971cb1ee5727da54adfb565f61d0) Co-authored-by: Stepfen Shawn --- diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h index d9a5f457d9c5..0593d773e55e 100644 --- a/Parser/tokenizer.h +++ b/Parser/tokenizer.h @@ -20,7 +20,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 */