]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Changed #ifdef 0 to #if 0.
authorChristian Heimes <christian@cheimes.de>
Sun, 2 Dec 2007 14:44:17 +0000 (14:44 +0000)
committerChristian Heimes <christian@cheimes.de>
Sun, 2 Dec 2007 14:44:17 +0000 (14:44 +0000)
Include/intobject.h

index b23afaedbe09a94b85036cbc0f1a8d0b09435824..09a522bca68a79ada6499ee864d648a8b8e1112c 100644 (file)
@@ -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