From 4c1be9e3d26ba32434b6e837960b06cc50789680 Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Sat, 14 Jan 2012 16:03:07 +1000 Subject: [PATCH] Remove lingering artifact of an initial PEP 380 Grammar change that was later reverted --- Grammar/Grammar | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grammar/Grammar b/Grammar/Grammar index 38320ef26fd..d7aaffd60e1 100644 --- a/Grammar/Grammar +++ b/Grammar/Grammar @@ -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]