From: Jack Jansen Date: Thu, 25 Jan 1996 16:11:19 +0000 (+0000) Subject: Removed unused var X-Git-Tag: v1.4b1~393 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4;p=python Removed unused var --- diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 20eab1e1f6..391b80ef3e 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -485,7 +485,6 @@ complex_new(self, args) object *self; object *args; { - int n; complex cval; cval.imag = 0.; diff --git a/Python/compile.c b/Python/compile.c index 2f6c46b9a5..531287020d 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -970,7 +970,6 @@ com_factor(c, n) struct compiling *c; node *n; { - int i; REQ(n, factor); if (TYPE(CHILD(n, 0)) == PLUS) { com_factor(c, CHILD(n, 1));