[Python-3000-checkins] r61447 - python/branches/py3k/Parser/asdl.py

neal.norwitz python-3000-checkins at python.org
Mon Mar 17 19:03:56 CET 2008


Author: neal.norwitz
Date: Mon Mar 17 19:03:56 2008
New Revision: 61447

Modified:
   python/branches/py3k/Parser/asdl.py
Log:
Add missing parameter spotted by Jared Flatow

Modified: python/branches/py3k/Parser/asdl.py
==============================================================================
--- python/branches/py3k/Parser/asdl.py	(original)
+++ python/branches/py3k/Parser/asdl.py	Mon Mar 17 19:03:56 2008
@@ -181,7 +181,7 @@
         " sum ::= constructor """
         return [constructor[0]]
 
-    def p_sum_1(self, ):
+    def p_sum_1(self, info):
         " sum ::= constructor | sum "
         constructor, _, sum = info
         return [constructor] + sum


More information about the Python-3000-checkins mailing list