diff options
author | Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> | 2020-03-15 19:32:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-15 19:32:17 (GMT) |
commit | 8689209e0338943dba9b7ff5566b8a420374764c (patch) | |
tree | 85b8eaa7a411ad1012628f17a56ae899c4ab19c5 /Include/Python-ast.h | |
parent | 61ac612e78e4f2625977406fb6f366e0a644673a (diff) | |
download | cpython-8689209e0338943dba9b7ff5566b8a420374764c.zip cpython-8689209e0338943dba9b7ff5566b8a420374764c.tar.gz cpython-8689209e0338943dba9b7ff5566b8a420374764c.tar.bz2 |
bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)
Diffstat (limited to 'Include/Python-ast.h')
-rw-r--r-- | Include/Python-ast.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/Python-ast.h b/Include/Python-ast.h index f4631f2..c44d6ea 100644 --- a/Include/Python-ast.h +++ b/Include/Python-ast.h @@ -17,8 +17,8 @@ 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 } expr_context_ty; +typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5 } + expr_context_ty; typedef enum _boolop { And=1, Or=2 } boolop_ty; |