diff options
author | Guido van Rossum <guido@python.org> | 1996-07-21 02:27:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-21 02:27:43 (GMT) |
commit | 530956d247fd01cb4e3bdc0dedd7ab3e0b9a8b13 (patch) | |
tree | 346bc758298b88c54912f892dd8d1e27abc9bb11 /Python/bltinmodule.c | |
parent | 519b4339f1ac649a10ef5db03a05a47d88ee6072 (diff) | |
download | cpython-530956d247fd01cb4e3bdc0dedd7ab3e0b9a8b13.zip cpython-530956d247fd01cb4e3bdc0dedd7ab3e0b9a8b13.tar.gz cpython-530956d247fd01cb4e3bdc0dedd7ab3e0b9a8b13.tar.bz2 |
Py_complex; and WITHOUT_COMPLEX added to getargs.c
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 0eedb65..3a3fe56 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -286,7 +286,7 @@ builtin_complex(self, args) { object *r, *i; number_methods *nbr, *nbi; - complex cr, ci; + Py_complex cr, ci; i = NULL; if (!newgetargs(args, "O|O:complex", &r, &i)) |