Implement change suggested by Jiwon Seo on python-dev.

['(' gen_for ')'] is redundant with test, so remove it.
This commit is contained in:
Neal Norwitz 2006-02-24 23:11:14 +00:00
parent 8786eb5e92
commit d074beb692

View file

@ -116,7 +116,7 @@ dictmaker: test ':' test (',' test ':' test)* [',']
classdef: 'class' NAME ['(' [testlist] ')'] ':' suite
arglist: (argument ',')* (argument [',']| '*' test [',' '**' test] | '**' test)
argument: test [gen_for] | test '=' test ['(' gen_for ')'] # Really [keyword '='] test
argument: test [gen_for] | test '=' test # Really [keyword '='] test
list_iter: list_for | list_if
list_for: 'for' exprlist 'in' testlist_safe [list_iter]