mirror of
https://github.com/python/cpython.git
synced 2025-09-04 16:01:10 +00:00
bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)
This commit is contained in:
parent
61ac612e78
commit
8689209e03
7 changed files with 27 additions and 51 deletions
4
Include/Python-ast.h
generated
4
Include/Python-ast.h
generated
|
@ -17,8 +17,8 @@ typedef struct _stmt *stmt_ty;
|
|||
|
||||
typedef struct _expr *expr_ty;
|
||||
|
||||
typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5,
|
||||
Param=6 } expr_context_ty;
|
||||
typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5 }
|
||||
expr_context_ty;
|
||||
|
||||
typedef enum _boolop { And=1, Or=2 } boolop_ty;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue