summaryrefslogtreecommitdiffstats
path: root/Objects/complexobject.c
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2009-10-18 14:25:35 (GMT)
committerSkip Montanaro <skip@pobox.com>2009-10-18 14:25:35 (GMT)
commitba1e0f46ab5a83be1a367b0eadb2f783e06228b3 (patch)
treedd688b778427cfdd6e4786322fd6ede99fd6bfbb /Objects/complexobject.c
parent6ead552b47ecc4e7d85a03b3b662c6d46e59bec3 (diff)
downloadcpython-ba1e0f46ab5a83be1a367b0eadb2f783e06228b3.zip
cpython-ba1e0f46ab5a83be1a367b0eadb2f783e06228b3.tar.gz
cpython-ba1e0f46ab5a83be1a367b0eadb2f783e06228b3.tar.bz2
Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway)
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r--Objects/complexobject.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c
index 30d8b52..ccee382 100644
--- a/Objects/complexobject.c
+++ b/Objects/complexobject.c
@@ -12,8 +12,6 @@
#include <ieeefp.h>
#endif
-#ifndef WITHOUT_COMPLEX
-
/* elementary operations on complex numbers */
static Py_complex c_1 = {1., 0.};
@@ -1108,5 +1106,3 @@ PyTypeObject PyComplex_Type = {
complex_new, /* tp_new */
PyObject_Del, /* tp_free */
};
-
-#endif