]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.8] Revert bpo-39576: Clarify the word size for the 32-bit build. (GH-20743)
authorStefan Krah <skrah@bytereef.org>
Mon, 8 Jun 2020 23:20:58 +0000 (01:20 +0200)
committerGitHub <noreply@github.com>
Mon, 8 Jun 2020 23:20:58 +0000 (01:20 +0200)
This reverts commit c6ecd9c14081a787959e13df33e250102a658154.

Doc/library/decimal.rst

index 3dda35fbd35dbda49574577f135afb486bfdef69..f9421aba423ff4f7785b149ed79e6d9ce2e7cf10 100644 (file)
@@ -2164,8 +2164,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 digits per word (4-byte and 9 digits for the 32-bit build):
+   >>> # 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:
    >>> maxdigits = 19 * ((500 * 1024**2) // 8)
    >>>
    >>> # Check that this works: