From 8689209e0338943dba9b7ff5566b8a420374764c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Ta=C5=9Fkaya?= <47358913+isidentical@users.noreply.github.com> Date: Sun, 15 Mar 2020 22:32:17 +0300 Subject: bpo-39969: Remove ast.Param node class as is no longer used (GH-19020) --- Include/Python-ast.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Include/Python-ast.h') diff --git a/Include/Python-ast.h b/Include/Python-ast.h index f4631f2f9b..c44d6ea3fe 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; -- cgit v1.2.1