Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h

This commit is contained in:
Christian Heimes 2007-12-02 14:31:20 +00:00
parent 1a3284ed69
commit 217cfd1c86
123 changed files with 888 additions and 885 deletions

View file

@ -460,7 +460,7 @@ r_long64(RFILE *p)
long hi4 = r_long(p);
#if SIZEOF_LONG > 4
long x = (hi4 << 32) | (lo4 & 0xFFFFFFFFL);
return PyInt_FromLong(x);
return PyLong_FromLong(x);
#else
unsigned char buf[8];
int one = 1;
@ -533,7 +533,7 @@ r_object(RFILE *p)
break;
case TYPE_INT:
retval = PyInt_FromLong(r_long(p));
retval = PyLong_FromLong(r_long(p));
break;
case TYPE_INT64: