[Python-checkins] r82478 - in python/branches/py3k: Doc/library/sys.rst

mark.dickinson python-checkins at python.org
Sat Jul 3 11:17:16 CEST 2010


Author: mark.dickinson
Date: Sat Jul  3 11:17:16 2010
New Revision: 82478

Log:
Merged revisions 82476 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r82476 | mark.dickinson | 2010-07-03 10:15:09 +0100 (Sat, 03 Jul 2010) | 1 line
  
  Fix typo in sys.float_info docs.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Doc/library/sys.rst

Modified: python/branches/py3k/Doc/library/sys.rst
==============================================================================
--- python/branches/py3k/Doc/library/sys.rst	(original)
+++ python/branches/py3k/Doc/library/sys.rst	Sat Jul  3 11:17:16 2010
@@ -232,7 +232,7 @@
    +---------------------+----------------+--------------------------------------------------+
    | attribute           | float.h macro  | explanation                                      |
    +=====================+================+==================================================+
-   | :const:`epsilon`    | DBL_MAX        | difference between 1 and the least value greater |
+   | :const:`epsilon`    | DBL_EPSILON    | difference between 1 and the least value greater |
    |                     |                | than 1 that is representable as a float          |
    +---------------------+----------------+--------------------------------------------------+
    | :const:`dig`        | DBL_DIG        | maximum number of decimal digits that can be     |


More information about the Python-checkins mailing list