diff options
author | Guido van Rossum <guido@python.org> | 1996-09-07 15:55:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-09-07 15:55:27 (GMT) |
commit | b072150d7f737728236ed819bc17383411e4eb86 (patch) | |
tree | cd1ee7ef24c7e82006b4bdb5d0d41901e073c0db /Python/bltinmodule.c | |
parent | 87755a24c2df27f45a654b89b064606bc1905195 (diff) | |
download | cpython-b072150d7f737728236ed819bc17383411e4eb86.zip cpython-b072150d7f737728236ed819bc17383411e4eb86.tar.gz cpython-b072150d7f737728236ed819bc17383411e4eb86.tar.bz2 |
Stupid bug: complex(x,y) would yield x+xj
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index c337f1c..c1c3ed9 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -318,7 +318,7 @@ builtin_complex(self, args) else if (is_complexobject(i)) ci = ((complexobject*)i)->cval; else { - tmp = (*nbr->nb_float)(r); + tmp = (*nbr->nb_float)(i); if (tmp == NULL) return NULL; ci.real = getfloatvalue(tmp); |