Changed #ifdef 0 to #if 0.

This commit is contained in:
Christian Heimes 2007-12-02 14:44:17 +00:00
parent 217cfd1c86
commit b27ce7e468
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ PyAPI_DATA(PyTypeObject) PyInt_Type;
#define PyInt_CheckExact(op) (PyLong_CheckExact(op) && _PyLong_FitsInLong(op)) #define PyInt_CheckExact(op) (PyLong_CheckExact(op) && _PyLong_FitsInLong(op))
#ifdef 0 #if 0
# define PyInt_Check(op) PyLong_Check(op) # define PyInt_Check(op) PyLong_Check(op)
# define PyInt_FromString PyLong_FromString # define PyInt_FromString PyLong_FromString
# define PyInt_FromUnicode PyLong_FromUnicode # define PyInt_FromUnicode PyLong_FromUnicode