diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-03-17 21:41:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 21:41:08 (GMT) |
commit | 6b97598fb66a08d0f36e4d73bffea5c1b17740d4 (patch) | |
tree | 5fb1922e733a71ad26788b1d5f3f9575ca015600 /Include/Python-ast.h | |
parent | dab8423d220243efabbbcafafc12d90145539b50 (diff) | |
download | cpython-6b97598fb66a08d0f36e4d73bffea5c1b17740d4.zip cpython-6b97598fb66a08d0f36e4d73bffea5c1b17740d4.tar.gz cpython-6b97598fb66a08d0f36e4d73bffea5c1b17740d4.tar.bz2 |
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
Diffstat (limited to 'Include/Python-ast.h')
-rw-r--r-- | Include/Python-ast.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/Python-ast.h b/Include/Python-ast.h index c44d6ea..7db0037 100644 --- a/Include/Python-ast.h +++ b/Include/Python-ast.h @@ -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; |