aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Parser/lexer/state.c
diff options
context:
space:
mode:
Diffstat (limited to 'Parser/lexer/state.c')
-rw-r--r--Parser/lexer/state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/lexer/state.c b/Parser/lexer/state.c
index 1665debea30..2de9004fe08 100644
--- a/Parser/lexer/state.c
+++ b/Parser/lexer/state.c
@@ -54,7 +54,7 @@ _PyTokenizer_tok_new(void)
tok->tok_extra_tokens = 0;
tok->comment_newline = 0;
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[0] = (tokenizer_mode){.kind =TOK_REGULAR_MODE, .quote='\0', .quote_size = 0, .in_debug=0};
tok->tok_mode_stack_index = 0;
#ifdef Py_DEBUG
tok->debug = _Py_GetConfig()->parser_debug;