diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-12-04 22:18:27 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-12-04 22:18:27 +0000 |
commit | 327858ef2c4512937a1333212a3b46a62c18ccc3 (patch) | |
tree | 62c580b25d31dc63acee426a524754b1743c191b | |
parent | d1a1d1ed802187cd1a9a8a95ac5d758c7acffee6 (diff) | |
download | cpython-git-327858ef2c4512937a1333212a3b46a62c18ccc3.tar.gz |
Eliminate outdated usages of PyInt_GetMax.
-rw-r--r-- | Doc/c-api/utilities.rst | 6 | ||||
-rw-r--r-- | Python/modsupport.c | 10 |
2 files changed, 4 insertions, 12 deletions
diff --git a/Doc/c-api/utilities.rst b/Doc/c-api/utilities.rst index 0a92230467..e3533f0908 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 diff --git a/Python/modsupport.c b/Python/modsupport.c index aca57a4b00..68e1fa4a6a 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -316,10 +316,7 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags) { unsigned int n; n = va_arg(*p_va, unsigned int); - if (n > (unsigned long)PyInt_GetMax()) - return PyLong_FromUnsignedLong((unsigned long)n); - else - return PyLong_FromLong(n); + return PyLong_FromUnsignedLong(n); } case 'n': @@ -334,10 +331,7 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags) { unsigned long n; n = va_arg(*p_va, unsigned long); - if (n > (unsigned long)PyInt_GetMax()) - return PyLong_FromUnsignedLong(n); - else - return PyLong_FromLong(n); + return PyLong_FromUnsignedLong(n); } #ifdef HAVE_LONG_LONG |