summaryrefslogtreecommitdiffstats
path: root/Objects/complexobject.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-01-25 16:11:19 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-01-25 16:11:19 (GMT)
commit1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4 (patch)
treeae73adcdefac3f1182bf0c70c9f01523d7b2ac88 /Objects/complexobject.c
parent9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2 (diff)
downloadcpython-1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4.zip
cpython-1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4.tar.gz
cpython-1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4.tar.bz2
Removed unused var
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r--Objects/complexobject.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c
index 20eab1e..391b80e 100644
--- a/Objects/complexobject.c
+++ b/Objects/complexobject.c
@@ -485,7 +485,6 @@ complex_new(self, args)
object *self;
object *args;
{
- int n;
complex cval;
cval.imag = 0.;