bpo-39576: Clarify the word size for the 32-bit build. (GH-18616) (#18618)

(cherry picked from commit b76518d43f)

Authored-by: Stefan Krah <skrah@bytereef.org>
This commit is contained in:
Miss Islington (bot) 2020-02-23 05:44:28 -08:00 committed by GitHub
parent 91ba44623e
commit c6ecd9c140
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2155,8 +2155,8 @@ RAM and expect 10 simultaneous operands using a maximum of 500MB each::
>>> import sys
>>>
>>> # Maximum number of digits for a single operand using 500MB in 8 byte words
>>> # with 19 (9 for the 32-bit version) digits per word:
>>> # Maximum number of digits for a single operand using 500MB in 8-byte words
>>> # with 19 digits per word (4-byte and 9 digits for the 32-bit build):
>>> maxdigits = 19 * ((500 * 1024**2) // 8)
>>>
>>> # Check that this works: