diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-17 10:21:23 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-17 10:21:23 (GMT) |
commit | bf5c6a97f80acd4eb785250de8053efad51732ee (patch) | |
tree | ef345debda3189641642b7cadc173931898ad688 /Doc/c-api/arg.rst | |
parent | 8055afd0197862a3358fb219f5bb60233288fe02 (diff) | |
download | cpython-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.rst | 8 |
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 |