diff options
Diffstat (limited to 'Include/internal/pycore_ast_state.h')
-rw-r--r-- | Include/internal/pycore_ast_state.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Include/internal/pycore_ast_state.h b/Include/internal/pycore_ast_state.h index c5ae224217..882cd09c00 100644 --- a/Include/internal/pycore_ast_state.h +++ b/Include/internal/pycore_ast_state.h @@ -92,7 +92,13 @@ struct ast_state { PyObject *MatMult_singleton; PyObject *MatMult_type; PyObject *MatchAs_type; + PyObject *MatchClass_type; + PyObject *MatchMapping_type; PyObject *MatchOr_type; + PyObject *MatchSequence_type; + PyObject *MatchSingleton_type; + PyObject *MatchStar_type; + PyObject *MatchValue_type; PyObject *Match_type; PyObject *Mod_singleton; PyObject *Mod_type; @@ -159,6 +165,7 @@ struct ast_state { PyObject *boolop_type; PyObject *cases; PyObject *cause; + PyObject *cls; PyObject *cmpop_type; PyObject *col_offset; PyObject *comparators; @@ -194,6 +201,8 @@ struct ast_state { PyObject *kind; PyObject *kw_defaults; PyObject *kwarg; + PyObject *kwd_attrs; + PyObject *kwd_patterns; PyObject *kwonlyargs; PyObject *left; PyObject *level; @@ -212,8 +221,10 @@ struct ast_state { PyObject *optional_vars; PyObject *orelse; PyObject *pattern; + PyObject *pattern_type; PyObject *patterns; PyObject *posonlyargs; + PyObject *rest; PyObject *returns; PyObject *right; PyObject *simple; |