[Python-checkins] cpython: Document decimal.MIN_ETINY.

stefan.krah python-checkins at python.org
Wed Mar 21 18:48:16 CET 2012


http://hg.python.org/cpython/rev/3d5ef57742d3
changeset:   75851:3d5ef57742d3
user:        Stefan Krah <skrah at bytereef.org>
date:        Wed Mar 21 18:47:20 2012 +0100
summary:
  Document decimal.MIN_ETINY.

files:
  Doc/library/decimal.rst |  21 ++++++++++++---------
  1 files changed, 12 insertions(+), 9 deletions(-)


diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
--- a/Doc/library/decimal.rst
+++ b/Doc/library/decimal.rst
@@ -1387,15 +1387,18 @@
 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
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list