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

View file

@ -75,8 +75,6 @@ expr_context_name(expr_context_ty ctx)
return "AugLoad";
case AugStore:
return "AugStore";
case Param:
return "Param";
default:
Py_UNREACHABLE();
}