Commit 542cc2b7 authored by Guido van Rossum's avatar Guido van Rossum

Remove unused variable.

parent 712ce500
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment