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 d6283b8 commit 5ac946cCopy full SHA for 5ac946c
1 file changed
Python/compile.c
@@ -3539,13 +3539,11 @@ com_arglist(struct compiling *c, node *n)
3539
for (i = 0, narg = 0; i < nch; i++) {
3540
node *ch = CHILD(n, i);
3541
node *fp;
3542
- char *name;
3543
if (TYPE(ch) == STAR || TYPE(ch) == DOUBLESTAR)
3544
break;
3545
REQ(ch, fpdef); /* fpdef: NAME | '(' fplist ')' */
3546
fp = CHILD(ch, 0);
3547
if (TYPE(fp) != NAME) {
3548
- name = nbuf;
3549
sprintf(nbuf, ".%d", i);
3550
complex = 1;
3551
}
0 commit comments