diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2022-01-14 18:54:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 18:54:56 (GMT) |
commit | 025cbe7a9b5d3058ce2eb8015d3650e396004545 (patch) | |
tree | dbe02480ec23d31a72088bce7dd641d9bf45160e /Doc/using | |
parent | ee1a8b336d30476e9635a6826f61a99fc3604159 (diff) | |
download | cpython-025cbe7a9b5d3058ce2eb8015d3650e396004545.zip cpython-025cbe7a9b5d3058ce2eb8015d3650e396004545.tar.gz cpython-025cbe7a9b5d3058ce2eb8015d3650e396004545.tar.bz2 |
bpo-45569: Change PYLONG_BITS_IN_DIGIT default to 30 (GH-30497)
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/configure.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 771ad3c..f1c156c 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -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``. |