Skip to content

Commit

Permalink
Update peps/pep-0757.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev authored Sep 20, 2024
1 parent 1c4772e commit bd44ea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion peps/pep-0757.rst
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ create a Python :class:`int` object from a digits array.
The caller must initialize the array of digits *digits* and then call
:c:func:`PyLongWriter_Finish` to get a Python :class:`int`. Digits must be
in the range [``0``; ``(1 << sys.bits_per_digit) - 1``]. Unused digits must
in the range [``0``; ``(1 << sys.int_info.bits_per_digit) - 1``]. Unused digits must
be set to ``0``.
On CPython 3.14, the implementation is a thin wrapper to the private
Expand Down

0 comments on commit bd44ea0

Please sign in to comment.