[Python-3000-checkins] r59273 - python/branches/py3k/Include/intobject.h

christian.heimes python-3000-checkins at python.org
Sun Dec 2 15:44:18 CET 2007


Author: christian.heimes
Date: Sun Dec  2 15:44:17 2007
New Revision: 59273

Modified:
   python/branches/py3k/Include/intobject.h
Log:
Changed #ifdef 0 to #if 0.

Modified: python/branches/py3k/Include/intobject.h
==============================================================================
--- python/branches/py3k/Include/intobject.h	(original)
+++ python/branches/py3k/Include/intobject.h	Sun Dec  2 15:44:17 2007
@@ -31,7 +31,7 @@
 
 #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


More information about the Python-3000-checkins mailing list