From: Tim Peters Date: Wed, 9 May 2001 18:53:51 +0000 (+0000) Subject: SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanup X-Git-Tag: v2.2a3~1864 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ac946c6975c602117e336dc5f239c4fd38c0b03;p=thirdparty%2FPython%2Fcpython.git SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanup --- diff --git a/Python/compile.c b/Python/compile.c index 9f215f2748b5..ec3de2604eab 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; }