Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4c1be9e

Browse files
committed
Remove lingering artifact of an initial PEP 380 Grammar change that was later reverted
1 parent 7cdb447 commit 4c1be9e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Grammar/Grammar

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ arglist: (argument ',')* (argument [',']
121121
|'**' test)
122122
# The reason that keywords are test nodes instead of NAME is that using NAME
123123
# results in an ambiguity. ast.c makes sure it's a NAME.
124-
argument: (test) [comp_for] | test '=' test # Really [keyword '='] test
124+
argument: test [comp_for] | test '=' test # Really [keyword '='] test
125125
comp_iter: comp_for | comp_if
126126
comp_for: 'for' exprlist 'in' or_test [comp_iter]
127127
comp_if: 'if' test_nocond [comp_iter]

0 commit comments

Comments
 (0)