8000 bpo-45569: Change PYLONG_BITS_IN_DIGIT default to 30 by mdickinson · Pull Request #30497 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-45569: Change PYLONG_BITS_IN_DIGIT default to 30 #30497

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jan 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Tweak comment wording
  • Loading branch information
mdickinson committed Jan 9, 2022
commit 515c0e8d1c5afcd2907c0a5ced1a7868bbde3dff
3 changes: 1 addition & 2 deletions Include/pyport.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@ Used in: Py_SAFE_DOWNCAST

/* PYLONG_BITS_IN_DIGIT describes the number of bits per "digit" (limb) in the
* PyLongObject implementation (longintrepr.h). It's currently either 30 or 15,
* defaulting to 30. The 15-bit PyLong digit option may be removed in the
* future.
* defaulting to 30. The 15-bit digit option may be removed in the future.
*/
#ifndef PYLONG_BITS_IN_DIGIT
#define PYLONG_BITS_IN_DIGIT 30
Expand Down
0