summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Include/intobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/intobject.h b/Include/intobject.h
index b23afae..09a522b 100644
--- a/Include/intobject.h
+++ b/Include/intobject.h
@@ -31,7 +31,7 @@ PyAPI_DATA(PyTypeObject) PyInt_Type;
#define PyInt_CheckExact(op) (PyLong_CheckExact(op) && _PyLong_FitsInLong(op))
-#ifdef 0
+#if 0
# define PyInt_Check(op) PyLong_Check(op)
# define PyInt_FromString PyLong_FromString
# define PyInt_FromUnicode PyLong_FromUnicode