Skip to content

Commit

Permalink
Remove lingering artifact of an initial PEP 380 Grammar change that w…
Browse files Browse the repository at this point in the history
…as later reverted
  • Loading branch information
ncoghlan committed Jan 14, 2012
1 parent 8623d41 commit 11f7b47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Grammar/Grammar
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ arglist: (argument ',')* (argument [',']
|'**' test)
# The reason that keywords are test nodes instead of NAME is that using NAME
# results in an ambiguity. ast.c makes sure it's a NAME.
argument: (test) [comp_for] | test '=' test # Really [keyword '='] test
argument: test [comp_for] | test '=' test # Really [keyword '='] test
comp_iter: comp_for | comp_if
comp_for: 'for' exprlist 'in' or_test [comp_iter]
comp_if: 'if' test_nocond [comp_iter]
Expand Down

0 comments on commit 11f7b47

Please sign in to comment.