From b27ce7e46843841e8e8f2c9e5108044d022ae248 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sun, 2 Dec 2007 14:44:17 +0000 Subject: Changed #ifdef 0 to #if 0. --- Include/intobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12