mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-36187: Remove NamedStore. (GH-12167)
NamedStore has been replaced with Store. The difference between NamedStore and Store is handled when precess the NamedExpr node one level upper.
This commit is contained in:
parent
adfffc7343
commit
d8b3a98c90
7 changed files with 103 additions and 143 deletions
2
Include/Python-ast.h
generated
2
Include/Python-ast.h
generated
|
@ -17,7 +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,
|
||||
Param=6, NamedStore=7 } expr_context_ty;
|
||||
Param=6 } expr_context_ty;
|
||||
|
||||
typedef struct _slice *slice_ty;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue