Kill gratuitous space.

This commit is contained in:
Mark Dickinson 2010-07-07 16:10:44 +00:00
parent a11d8c03a4
commit 7e4a6ebd42
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ typedargslist: ((tfpdef ['=' test] ',')*
| tfpdef ['=' test] (',' tfpdef ['=' test])* [','])
tfpdef: NAME [':' test]
varargslist: ((vfpdef ['=' test] ',')*
('*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] | '**' vfpdef)
('*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] | '**' vfpdef)
| vfpdef ['=' test] (',' vfpdef ['=' test])* [','])
vfpdef: NAME