diff options
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 c44d6ea3fe..7db0037bb0 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; |