mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
gh-102856: Clean some of the PEP 701 tokenizer implementation (#103634)
This commit is contained in:
parent
5f7d68e48d
commit
d4aa8578b1
2 changed files with 67 additions and 74 deletions
|
@ -43,9 +43,8 @@ enum tokenizer_mode_kind_t {
|
|||
typedef struct _tokenizer_mode {
|
||||
enum tokenizer_mode_kind_t kind;
|
||||
|
||||
int bracket_stack;
|
||||
int bracket_mark[MAX_EXPR_NESTING];
|
||||
int bracket_mark_index;
|
||||
int curly_bracket_depth;
|
||||
int curly_bracket_expr_start_depth;
|
||||
|
||||
char f_string_quote;
|
||||
int f_string_quote_size;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue