Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bda355f

Browse files
committed
Add missing parameter spotted by Jared Flatow
1 parent 8c1de8f commit bda355f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Parser/asdl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def p_sum_0(self, constructor):
181181
" sum ::= constructor """
182182
return [constructor[0]]
183183

184-
def p_sum_1(self, ):
184+
def p_sum_1(self, info):
185185
" sum ::= constructor | sum "
186186
constructor, _, sum = info
187187
return [constructor] + sum

0 commit comments

Comments
 (0)