Commit b27ce7e4 authored by Christian Heimes's avatar Christian Heimes

Changed #ifdef 0 to #if 0.

parent 217cfd1c
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment