]> granicus.if.org Git - python/commitdiff
Remove useless string literal.
authorGeorg Brandl <georg@python.org>
Sat, 3 Jan 2009 13:45:15 +0000 (13:45 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 3 Jan 2009 13:45:15 +0000 (13:45 +0000)
Parser/asdl.py

index bd892b695d61339c16f14f8d690c16800b5c0090..7620d58462ab337089ecb106ccc492b40e438fe8 100644 (file)
@@ -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)):