summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-06-13 17:07:07 (GMT)
committerGuido van Rossum <guido@python.org>2002-06-13 17:07:07 (GMT)
commit65ce6de35cdb973852fcd17323f7246ecabdbde4 (patch)
treecd79e9f79d9cee45cf9c8030063d6d833822fa43 /Objects
parent597257b94090c21010b9b4bf5a021eda683c3512 (diff)
downloadcpython-65ce6de35cdb973852fcd17323f7246ecabdbde4.zip
cpython-65ce6de35cdb973852fcd17323f7246ecabdbde4.tar.gz
cpython-65ce6de35cdb973852fcd17323f7246ecabdbde4.tar.bz2
Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up from
pyconfig.h.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/complexobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c
index 774c546..58ca6bc 100644
--- a/Objects/complexobject.c
+++ b/Objects/complexobject.c
@@ -5,11 +5,11 @@
/* Submitted by Jim Hugunin */
-#ifndef WITHOUT_COMPLEX
-
#include "Python.h"
#include "structmember.h"
+#ifndef WITHOUT_COMPLEX
+
/* Precisions used by repr() and str(), respectively.
The repr() precision (17 significant decimal digits) is the minimal number