commit | 6b97598fb66a08d0f36e4d73bffea5c1b17740d4 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Tue Mar 17 23:41:08 2020 +0200 |
committer | GitHub <noreply@github.com> | Tue Mar 17 23:41:08 2020 +0200 |
tree | 5fb1922e733a71ad26788b1d5f3f9575ca015600 | |
parent | dab8423d220243efabbbcafafc12d90145539b50 [diff] [blame] |
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
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 _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;