]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-39576: Clarify the word size for the 32-bit build. (GH-18616) (#18617)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 23 Feb 2020 13:42:57 +0000 (05:42 -0800)
committerGitHub <noreply@github.com>
Sun, 23 Feb 2020 13:42:57 +0000 (14:42 +0100)
(cherry picked from commit b76518d43fb82ed9e5d27025d18c90a23d525c90)

Authored-by: Stefan Krah <skrah@bytereef.org>
Doc/library/decimal.rst

index 2a51429bdff5c9087627f47862127ffca867ff41..4e640cc695990f1c825b95a8ee8bc8e6b51e4660 100644 (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: