diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-03-05 18:42:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-05 18:42:06 (GMT) |
commit | d8b3a98c9098c66a714fd5593e1928af0ffbc631 (patch) | |
tree | dc9c2290f796ec697adcfa12942f773646f8f13c /Include/Python-ast.h | |
parent | adfffc7343ce7ebc88ec734a803d3247ba8927fb (diff) | |
download | cpython-d8b3a98c9098c66a714fd5593e1928af0ffbc631.zip cpython-d8b3a98c9098c66a714fd5593e1928af0ffbc631.tar.gz cpython-d8b3a98c9098c66a714fd5593e1928af0ffbc631.tar.bz2 |
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.
Diffstat (limited to 'Include/Python-ast.h')
-rw-r--r-- | Include/Python-ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/Python-ast.h b/Include/Python-ast.h index 106cecf..52ba127 100644 --- a/Include/Python-ast.h +++ b/Include/Python-ast.h @@ -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; |