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
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to