From: Guido van Rossum Date: Wed, 9 Apr 1997 18:22:28 +0000 (+0000) Subject: Remove unused variable. X-Git-Tag: v1.5a1~190 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=801776742082034cc6193530326af042d5af56a5;p=python Remove unused variable. --- diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 197aa6db92..abd83e466b 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -601,7 +601,6 @@ complex_getattr(self, name) complexobject *self; char *name; { - Py_complex cval; if (strcmp(name, "real") == 0) return (object *)newfloatobject(self->cval.real); else if (strcmp(name, "imag") == 0)