commit | bc1309255e3ff081d6216673ea508e5d1c078953 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sat Jan 03 13:45:15 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Sat Jan 03 13:45:15 2009 +0000 |
tree | d43b87d5c5d471be216ded48fdfce79855e161f8 | |
parent | 4aa04db5735795289b7a6a23b4a485ad6c64f1ac [diff] [blame] |
Remove useless string literal.
diff --git a/Parser/asdl.py b/Parser/asdl.py index bd892b6..7620d58 100644 --- a/Parser/asdl.py +++ b/Parser/asdl.py
@@ -167,7 +167,7 @@ return Product(fields) def p_sum_0(self, (constructor,)): - " sum ::= constructor """ + " sum ::= constructor " return [constructor] def p_sum_1(self, (constructor, _, sum)):