diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-07-07 16:10:44 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-07-07 16:10:44 (GMT) |
commit | 7e4a6ebd42db12f57709279762ffc2a3ef860583 (patch) | |
tree | 0a3c5bb6372bb4f588cefdcdcc22cc61c43076b2 /Grammar | |
parent | a11d8c03a4c596c52bfea6c2f5b3940fa6126d38 (diff) | |
download | cpython-7e4a6ebd42db12f57709279762ffc2a3ef860583.zip cpython-7e4a6ebd42db12f57709279762ffc2a3ef860583.tar.gz cpython-7e4a6ebd42db12f57709279762ffc2a3ef860583.tar.bz2 |
Kill gratuitous space.
Diffstat (limited to 'Grammar')
-rw-r--r-- | Grammar/Grammar | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Grammar/Grammar b/Grammar/Grammar index d8300ec..7d63e23 100644 --- a/Grammar/Grammar +++ b/Grammar/Grammar @@ -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 |