Remove unused variable.

This commit is contained in:
Guido van Rossum 1997-04-09 18:22:28 +00:00
parent fa658ce03d
commit 8017767420

View file

@ -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)