mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Eliminate outdated usages of PyInt_GetMax.
This commit is contained in:
parent
d1a1d1ed80
commit
327858ef2c
2 changed files with 4 additions and 12 deletions
|
@ -901,12 +901,10 @@ return true, otherwise they return false and raise an appropriate exception.
|
|||
Convert a C :ctype:`unsigned short int` to a Python integer object.
|
||||
|
||||
``I`` (integer/long) [unsigned int]
|
||||
Convert a C :ctype:`unsigned int` to a Python integer object or a Python long
|
||||
integer object, if it is larger than ``sys.maxint``.
|
||||
Convert a C :ctype:`unsigned int` to a Python long integer object.
|
||||
|
||||
``k`` (integer/long) [unsigned long]
|
||||
Convert a C :ctype:`unsigned long` to a Python integer object or a Python long
|
||||
integer object, if it is larger than ``sys.maxint``.
|
||||
Convert a C :ctype:`unsigned long` to a Python long integer object.
|
||||
|
||||
``L`` (long) [PY_LONG_LONG]
|
||||
Convert a C :ctype:`long long` to a Python integer object. Only available
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue