diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-17 18:03:56 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-17 18:03:56 (GMT) |
commit | bda355ffe39ef1d50d15559d9eb9915202f0c243 (patch) | |
tree | 84ad5ba83881fe999dcc0c04ef10e6379067ea4b /Parser | |
parent | 8c1de8f33f58138e222532900d87ba6bec1c02a4 (diff) | |
download | cpython-bda355ffe39ef1d50d15559d9eb9915202f0c243.zip cpython-bda355ffe39ef1d50d15559d9eb9915202f0c243.tar.gz cpython-bda355ffe39ef1d50d15559d9eb9915202f0c243.tar.bz2 |
Add missing parameter spotted by Jared Flatow
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/asdl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl.py b/Parser/asdl.py index 8fbd9ec..71d3be7 100644 --- a/Parser/asdl.py +++ b/Parser/asdl.py @@ -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 |