Skip to content

Commit c0b7945

Browse files
author
Stefan Krah
authored
[3.7] Revert bpo-39576: Clarify the word size for the 32-bit build. (GH-20744)
This reverts commit 24c570b.
1 parent 62e7f9a commit c0b7945

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/decimal.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2164,8 +2164,8 @@ RAM and expect 10 simultaneous operands using a maximum of 500MB each::
21642164

21652165
>>> import sys
21662166
>>>
2167-
>>> # Maximum number of digits for a single operand using 500MB in 8-byte words
2168-
>>> # with 19 digits per word (4-byte and 9 digits for the 32-bit build):
2167+
>>> # Maximum number of digits for a single operand using 500MB in 8 byte words
2168+
>>> # with 19 (9 for the 32-bit version) digits per word:
21692169
>>> maxdigits = 19 * ((500 * 1024**2) // 8)
21702170
>>>
21712171
>>> # Check that this works:

0 commit comments

Comments
 (0)