diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-03-21 17:47:20 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-03-21 17:47:20 (GMT) |
commit | 851a07e5c25e9ae12695524f2d022c1638478138 (patch) | |
tree | 908b7948c9f16a6b05f4a9c9e98259e088b87735 /Doc/library | |
parent | 1919b7e72bc43315b32f38a6f5f01e8c717907f4 (diff) | |
download | cpython-851a07e5c25e9ae12695524f2d022c1638478138.zip cpython-851a07e5c25e9ae12695524f2d022c1638478138.tar.gz cpython-851a07e5c25e9ae12695524f2d022c1638478138.tar.bz2 |
Document decimal.MIN_ETINY.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/decimal.rst | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 4c5f3cd..1d987b8 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -1387,15 +1387,18 @@ Constants The constants in this section are only relevant for the C module. They are also included in the pure Python version for compatibility. -+--------------------+---------------------+------------------------------+ -| | 32-bit | 64-bit | -+====================+=====================+==============================+ -| .. data:: MAX_PREC | :const:`425000000` | :const:`999999999999999999` | -+--------------------+---------------------+------------------------------+ -| .. data:: MAX_EMAX | :const:`425000000` | :const:`999999999999999999` | -+--------------------+---------------------+------------------------------+ -| .. data:: MIN_EMIN | :const:`-425000000` | :const:`-999999999999999999` | -+--------------------+---------------------+------------------------------+ ++---------------------+---------------------+-------------------------------+ +| | 32-bit | 64-bit | ++=====================+=====================+===============================+ +| .. data:: MAX_PREC | :const:`425000000` | :const:`999999999999999999` | ++---------------------+---------------------+-------------------------------+ +| .. data:: MAX_EMAX | :const:`425000000` | :const:`999999999999999999` | ++---------------------+---------------------+-------------------------------+ +| .. data:: MIN_EMIN | :const:`-425000000` | :const:`-999999999999999999` | ++---------------------+---------------------+-------------------------------+ +| .. data:: MIN_ETINY | :const:`-849999999` | :const:`-1999999999999999997` | ++---------------------+---------------------+-------------------------------+ + .. data:: HAVE_THREADS |