diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-02 14:44:17 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-02 14:44:17 (GMT) |
commit | b27ce7e46843841e8e8f2c9e5108044d022ae248 (patch) | |
tree | e9e13691458d365a931173ffc496245900b57642 /Include | |
parent | 217cfd1c86c59ed8a55ce6d6b88bbe37309e7ba2 (diff) | |
download | cpython-b27ce7e46843841e8e8f2c9e5108044d022ae248.zip cpython-b27ce7e46843841e8e8f2c9e5108044d022ae248.tar.gz cpython-b27ce7e46843841e8e8f2c9e5108044d022ae248.tar.bz2 |
Changed #ifdef 0 to #if 0.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/intobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/intobject.h b/Include/intobject.h index b23afae..09a522b 100644 --- a/Include/intobject.h +++ b/Include/intobject.h @@ -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 |