From: Christian Heimes Date: Sun, 2 Dec 2007 14:44:17 +0000 (+0000) Subject: Changed #ifdef 0 to #if 0. X-Git-Tag: v3.0a2~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b27ce7e46843841e8e8f2c9e5108044d022ae248;p=thirdparty%2FPython%2Fcpython.git Changed #ifdef 0 to #if 0. --- diff --git a/Include/intobject.h b/Include/intobject.h index b23afaedbe09..09a522bca68a 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