summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorBatuhan Taşkaya <47358913+isidentical@users.noreply.github.com>2020-03-15 19:32:17 (GMT)
committerGitHub <noreply@github.com>2020-03-15 19:32:17 (GMT)
commit8689209e0338943dba9b7ff5566b8a420374764c (patch)
tree85b8eaa7a411ad1012628f17a56ae899c4ab19c5 /Parser
parent61ac612e78e4f2625977406fb6f366e0a644673a (diff)
downloadcpython-8689209e0338943dba9b7ff5566b8a420374764c.zip
cpython-8689209e0338943dba9b7ff5566b8a420374764c.tar.gz
cpython-8689209e0338943dba9b7ff5566b8a420374764c.tar.bz2
bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)
Diffstat (limited to 'Parser')
-rw-r--r--Parser/Python.asdl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl
index a1ddebd..19b5e1a 100644
--- a/Parser/Python.asdl
+++ b/Parser/Python.asdl
@@ -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