summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/compile.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 9f215f2..ec3de26 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -3539,13 +3539,11 @@ com_arglist(struct compiling *c, node *n)
for (i = 0, narg = 0; i < nch; i++) {
node *ch = CHILD(n, i);
node *fp;
- char *name;
if (TYPE(ch) == STAR || TYPE(ch) == DOUBLESTAR)
break;
REQ(ch, fpdef); /* fpdef: NAME | '(' fplist ')' */
fp = CHILD(ch, 0);
if (TYPE(fp) != NAME) {
- name = nbuf;
sprintf(nbuf, ".%d", i);
complex = 1;
}