Remove useless string literal.

This commit is contained in:
Georg Brandl 2009-01-03 13:45:15 +00:00
parent 4aa04db573
commit bc1309255e
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ class ASDLParser(spark.GenericParser, object):
return Product(fields) return Product(fields)
def p_sum_0(self, (constructor,)): def p_sum_0(self, (constructor,)):
" sum ::= constructor """ " sum ::= constructor "
return [constructor] return [constructor]
def p_sum_1(self, (constructor, _, sum)): def p_sum_1(self, (constructor, _, sum)):