bpo-45569: Change PYLONG_BITS_IN_DIGIT default to 30 (GH-30497)

This commit is contained in:
Mark Dickinson 2022-01-14 18:54:56 +00:00 committed by GitHub
parent ee1a8b336d
commit 025cbe7a9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 22 additions and 16 deletions

View file

@ -35,8 +35,7 @@ General Options
Define the size in bits of Python :class:`int` digits: 15 or 30 bits.
By default, the number of bits is selected depending on ``sizeof(void*)``:
30 bits if ``void*`` size is 64-bit or larger, 15 bits otherwise.
By default, the digit size is 30.
Define the ``PYLONG_BITS_IN_DIGIT`` to ``15`` or ``30``.