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

@ -90,7 +90,7 @@ module Python
-- col_offset is the byte offset in the utf8 string the parser uses
attributes (int lineno, int col_offset, int? end_lineno, int? end_col_offset)
expr_context = Load | Store | Del | AugLoad | AugStore | Param
expr_context = Load | Store | Del | AugLoad | AugStore
boolop = And | Or