From: Georg Brandl Date: Sat, 3 Jan 2009 13:45:15 +0000 (+0000) Subject: Remove useless string literal. X-Git-Tag: v2.7a1~2412 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc1309255e3ff081d6216673ea508e5d1c078953;p=python Remove useless string literal. --- diff --git a/Parser/asdl.py b/Parser/asdl.py index bd892b695d..7620d58462 100644 --- a/Parser/asdl.py +++ b/Parser/asdl.py @@ -167,7 +167,7 @@ class ASDLParser(spark.GenericParser, object): return Product(fields) def p_sum_0(self, (constructor,)): - " sum ::= constructor """ + " sum ::= constructor " return [constructor] def p_sum_1(self, (constructor, _, sum)):