Removed unintentional trailing spaces in text files.

This commit is contained in:
Serhiy Storchaka 2015-03-29 19:12:58 +03:00
parent 1770fde94c
commit bfbfc8deb2
15 changed files with 66 additions and 66 deletions

View file

@ -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.