From 801776742082034cc6193530326af042d5af56a5 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 9 Apr 1997 18:22:28 +0000 Subject: [PATCH] Remove unused variable. --- Objects/complexobject.c | 1 - 1 file changed, 1 deletion(-) 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)