Commit 851a07e5 authored by Stefan Krah's avatar Stefan Krah

Document decimal.MIN_ETINY.

parent 1919b7e7
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment