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) --- Python/ast.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'Python/ast.c') diff --git a/Python/ast.c b/Python/ast.c index 62ee60aa9f..1c1395f6f0 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -75,8 +75,6 @@ expr_context_name(expr_context_ty ctx) return "AugLoad"; case AugStore: return "AugStore"; - case Param: - return "Param"; default: Py_UNREACHABLE(); } -- cgit v1.2.1