From 01458c7a62cb3fc79e84e7326c5553e8143c4760 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sun, 18 Oct 2009 16:41:32 +0000 Subject: Remove the uses of WITHOUT_COMPLEX introduced in r75471 --- Python/compile.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'Python/compile.c') diff --git a/Python/compile.c b/Python/compile.c index 081268bcacc..2bb9beb3d8f 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -911,7 +911,6 @@ compiler_add_o(struct compiler *c, PyObject *dict, PyObject *o) else t = PyTuple_Pack(2, o, o->ob_type); } -#ifndef WITHOUT_COMPLEX else if (PyComplex_Check(o)) { Py_complex z; int real_part_zero, imag_part_zero; @@ -945,7 +944,6 @@ compiler_add_o(struct compiler *c, PyObject *dict, PyObject *o) t = PyTuple_Pack(2, o, o->ob_type); } } -#endif /* WITHOUT_COMPLEX */ else { t = PyTuple_Pack(2, o, o->ob_type); } -- cgit v1.2.3