summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/arg.rst
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-01-17 10:21:23 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-01-17 10:21:23 (GMT)
commitbf5c6a97f80acd4eb785250de8053efad51732ee (patch)
treeef345debda3189641642b7cadc173931898ad688 /Doc/c-api/arg.rst
parent8055afd0197862a3358fb219f5bb60233288fe02 (diff)
downloadcpython-bf5c6a97f80acd4eb785250de8053efad51732ee.zip
cpython-bf5c6a97f80acd4eb785250de8053efad51732ee.tar.gz
cpython-bf5c6a97f80acd4eb785250de8053efad51732ee.tar.bz2
Fix a few more references to long integers in the docs.
Diffstat (limited to 'Doc/c-api/arg.rst')
-rw-r--r--Doc/c-api/arg.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/c-api/arg.rst b/Doc/c-api/arg.rst
index 96068d9..dfedf97 100644
--- a/Doc/c-api/arg.rst
+++ b/Doc/c-api/arg.rst
@@ -489,11 +489,11 @@ and the following format units are left untouched.
``H`` (integer) [unsigned short int]
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 long integer object.
+ ``I`` (integer) [unsigned int]
+ Convert a C :ctype:`unsigned int` to a Python integer object.
- ``k`` (integer/long) [unsigned long]
- Convert a C :ctype:`unsigned long` to a Python long integer object.
+ ``k`` (integer) [unsigned long]
+ Convert a C :ctype:`unsigned long` to a Python integer object.
``L`` (long) [PY_LONG_LONG]
Convert a C :ctype:`long long` to a Python integer object. Only available