bpo-27961: Replace PY_ULLONG_MAX with ULLONG_MAX (GH-17539)

This commit is contained in:
Sergey Fedoseev 2019-12-10 01:22:19 +05:00 committed by Victor Stinner
parent ee17e37356
commit a2ff283d51
1 changed files with 1 additions and 1 deletions

View File

@ -304,7 +304,7 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate.
it to a :c:type:`PyLongObject`.
If the value of *obj* is out of range for an :c:type:`unsigned long long`,
return the reduction of that value modulo ``PY_ULLONG_MAX + 1``.
return the reduction of that value modulo ``ULLONG_MAX + 1``.
Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred`
to disambiguate.