[Python-checkins] r68195 - python/trunk/Parser/asdl.py

georg.brandl python-checkins at python.org
Sat Jan 3 14:45:15 CET 2009


Author: georg.brandl
Date: Sat Jan  3 14:45:15 2009
New Revision: 68195

Log:
Remove useless string literal.


Modified:
   python/trunk/Parser/asdl.py

Modified: python/trunk/Parser/asdl.py
==============================================================================
--- python/trunk/Parser/asdl.py	(original)
+++ python/trunk/Parser/asdl.py	Sat Jan  3 14:45:15 2009
@@ -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)):


More information about the Python-checkins mailing list