diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 197aa6db921..abd83e466b8 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)