diff options
author | Guido van Rossum <guido@python.org> | 1997-04-09 18:22:28 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-04-09 18:22:28 (GMT) |
commit | 801776742082034cc6193530326af042d5af56a5 (patch) | |
tree | 571f7e38eff65e8ab78cac000c20703f481ee9dc /Objects/complexobject.c | |
parent | fa658ce03d82dc0f9223cde427b12d1eeb48dce7 (diff) | |
download | cpython-801776742082034cc6193530326af042d5af56a5.zip cpython-801776742082034cc6193530326af042d5af56a5.tar.gz cpython-801776742082034cc6193530326af042d5af56a5.tar.bz2 |
Remove unused variable.
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r-- | Objects/complexobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 197aa6d..abd83e4 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) |