summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2007-12-04 22:18:27 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2007-12-04 22:18:27 (GMT)
commit327858ef2c4512937a1333212a3b46a62c18ccc3 (patch)
tree62c580b25d31dc63acee426a524754b1743c191b /Doc/c-api
parentd1a1d1ed802187cd1a9a8a95ac5d758c7acffee6 (diff)
downloadcpython-327858ef2c4512937a1333212a3b46a62c18ccc3.zip
cpython-327858ef2c4512937a1333212a3b46a62c18ccc3.tar.gz
cpython-327858ef2c4512937a1333212a3b46a62c18ccc3.tar.bz2
Eliminate outdated usages of PyInt_GetMax.
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/utilities.rst6
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/c-api/utilities.rst b/Doc/c-api/utilities.rst
index 0a92230..e3533f0 100644
--- a/Doc/c-api/utilities.rst
+++ b/Doc/c-api/utilities.rst
@@ -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