mirror of
https://github.com/python/cpython.git
synced 2025-10-21 14:12:27 +00:00
Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.
This commit is contained in:
parent
043bbc7da3
commit
b9a0f91218
15 changed files with 87 additions and 85 deletions
|
@ -1437,7 +1437,7 @@ sock_fileno(PySocketSockObject *s)
|
|||
#if SIZEOF_SOCKET_T <= SIZEOF_LONG
|
||||
return PyInt_FromLong((long) s->sock_fd);
|
||||
#else
|
||||
return PyLong_FromLongLong((LONG_LONG)s->sock_fd);
|
||||
return PyLong_FromLongLong((PY_LONG_LONG)s->sock_fd);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue