bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)

This commit is contained in:
Batuhan Taşkaya 2020-03-15 22:32:17 +03:00 committed by GitHub
parent 61ac612e78
commit 8689209e03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 27 additions and 51 deletions

4
Include/Python-ast.h generated
View file

@ -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;