Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b0705d commit 2b3f0caCopy full SHA for 2b3f0ca
1 file changed
Python/compile.c
@@ -4667,7 +4667,9 @@ symtable_params(struct symtable *st, node *n)
4667
for (j = 0; j <= complex; j++) {
4668
c = CHILD(n, j);
4669
if (TYPE(c) == COMMA)
4670
- c = CHILD(n, ++j);
+ c = CHILD(n, ++j);
4671
+ else if (TYPE(c) == EQUAL)
4672
+ c = CHILD(n, j += 3);
4673
if (TYPE(CHILD(c, 0)) == LPAR)
4674
symtable_params_fplist(st, CHILD(c, 1));
4675
}
0 commit comments