]> granicus.if.org Git - python/commitdiff
Add missing parameter spotted by Jared Flatow
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 17 Mar 2008 18:03:56 +0000 (18:03 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 17 Mar 2008 18:03:56 +0000 (18:03 +0000)
Parser/asdl.py

index 8fbd9ec9fe1a4f464a1da9b95e5f95794634ea8e..71d3be7f8a56ad7f46b0097b5d55e4d5a9605fcd 100644 (file)
@@ -181,7 +181,7 @@ class ASDLParser(spark.GenericParser, object):
         " 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