diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-29 16:12:58 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-29 16:12:58 (GMT) |
commit | bfbfc8deb2b1a1886fc5af74da593e9409dc99b9 (patch) | |
tree | 724f52aeffed967471bf769eb089fab0a7d4ac58 /Grammar | |
parent | 1770fde94cb2bbcd05f4e3e72e2b78074566f522 (diff) | |
download | cpython-bfbfc8deb2b1a1886fc5af74da593e9409dc99b9.zip cpython-bfbfc8deb2b1a1886fc5af74da593e9409dc99b9.tar.gz cpython-bfbfc8deb2b1a1886fc5af74da593e9409dc99b9.tar.bz2 |
Removed unintentional trailing spaces in text files.
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 6c012c0..94898d3 100644 --- a/Grammar/Grammar +++ b/Grammar/Grammar @@ -117,7 +117,7 @@ dictorsetmaker: ( (test ':' test (comp_for | (',' test ':' test)* [','])) | classdef: 'class' NAME ['(' [arglist] ')'] ':' suite arglist: (argument ',')* (argument [','] - |'*' test (',' argument)* [',' '**' test] + |'*' test (',' argument)* [',' '**' test] |'**' 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. |