There was an error while loading. Please reload this page.
1 parent 8c1de8f commit bda355fCopy full SHA for bda355f
1 file changed
Parser/asdl.py
@@ -181,7 +181,7 @@ def p_sum_0(self, constructor):
181
" sum ::= constructor """
182
return [constructor[0]]
183
184
- def p_sum_1(self, ):
+ def p_sum_1(self, info):
185
" sum ::= constructor | sum "
186
constructor, _, sum = info
187
return [constructor] + sum
0 commit comments