mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
This commit is contained in:
parent
1a3284ed69
commit
217cfd1c86
123 changed files with 888 additions and 885 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue