mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
This commit is contained in:
parent
dab8423d22
commit
6b97598fb6
7 changed files with 54 additions and 180 deletions
3
Include/Python-ast.h
generated
3
Include/Python-ast.h
generated
|
|
@ -17,8 +17,7 @@ typedef struct _stmt *stmt_ty;
|
|||
|
||||
typedef struct _expr *expr_ty;
|
||||
|
||||
typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5 }
|
||||
expr_context_ty;
|
||||
typedef enum _expr_context { Load=1, Store=2, Del=3 } expr_context_ty;
|
||||
|
||||
typedef enum _boolop { And=1, Or=2 } boolop_ty;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue