mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
Add missing parameter spotted by Jared Flatow
This commit is contained in:
parent
8c1de8f33f
commit
bda355ffe3
1 changed files with 1 additions and 1 deletions
|
|
@ -181,7 +181,7 @@ def p_sum_0(self, constructor):
|
|||
" 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue