diff options
author | Menelaos Kotoglou <contact@menelaoskotoglou.com> | 2023-07-22 12:23:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 12:23:23 (GMT) |
commit | 76e20c361c8d6bc20d939d436a1c3d4077a58186 (patch) | |
tree | 6168374c100a733cd9d63a9130f690bd4e6abc08 | |
parent | adda43dc0bcea853cbfa33126e5549c584cef8be (diff) | |
download | cpython-76e20c361c8d6bc20d939d436a1c3d4077a58186.zip cpython-76e20c361c8d6bc20d939d436a1c3d4077a58186.tar.gz cpython-76e20c361c8d6bc20d939d436a1c3d4077a58186.tar.bz2 |
gh-106989: Remove tok report warnings (#106993)
-rw-r--r-- | Parser/tokenizer.c | 5 | ||||
-rw-r--r-- | Parser/tokenizer.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index f191986..ccff160 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -116,7 +116,6 @@ tok_new(void) tok->implicit_newline = 0; tok->tok_mode_stack[0] = (tokenizer_mode){.kind =TOK_REGULAR_MODE, .f_string_quote='\0', .f_string_quote_size = 0, .f_string_debug=0}; tok->tok_mode_stack_index = 0; - tok->tok_report_warnings = 1; #ifdef Py_DEBUG tok->debug = _Py_GetConfig()->parser_debug; #endif @@ -1545,10 +1544,6 @@ static int warn_invalid_escape_sequence(struct tok_state *tok, int first_invalid_escape_char) { - if (!tok->tok_report_warnings) { - return 0; - } - PyObject *msg = PyUnicode_FromFormat( "invalid escape sequence '\\%c'", (char) first_invalid_escape_char diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h index cb44845..1e1daa3 100644 --- a/Parser/tokenizer.h +++ b/Parser/tokenizer.h @@ -128,7 +128,6 @@ struct tok_state { // TODO: Factor this into its own thing tokenizer_mode tok_mode_stack[MAXFSTRINGLEVEL]; int tok_mode_stack_index; - int tok_report_warnings; int tok_extra_tokens; int comment_newline; int implicit_newline; |