From: Guido van Rossum Date: Sat, 18 Jan 1997 20:04:05 +0000 (+0000) Subject: Remove unused variable. X-Git-Tag: v1.5a1~465 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7eb883a18e2260c73fd08073b640eac07c6788c7;p=python Remove unused variable. --- diff --git a/Python/compile.c b/Python/compile.c index a772d79e71..6d3a479f49 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -225,7 +225,6 @@ newcodeobject(argcount, nlocals, stacksize, flags, /* Intern selected string constants */ for (i = gettuplesize(consts); --i >= 0; ) { object *v = gettupleitem(consts, i); - int n; char *p; if (!is_stringobject(v)) continue;