[Python-checkins] r77304 - in python/branches/py3k: Python/dtoa.c

mark.dickinson python-checkins at python.org
Mon Jan 4 22:33:31 CET 2010


Author: mark.dickinson
Date: Mon Jan  4 22:33:31 2010
New Revision: 77304

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

........
  r77302 | mark.dickinson | 2010-01-04 21:32:02 +0000 (Mon, 04 Jan 2010) | 1 line
  
  Fix typo in comment.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Python/dtoa.c

Modified: python/branches/py3k/Python/dtoa.c
==============================================================================
--- python/branches/py3k/Python/dtoa.c	(original)
+++ python/branches/py3k/Python/dtoa.c	Mon Jan  4 22:33:31 2010
@@ -927,7 +927,7 @@
 
    Given a finite nonzero double d, return an odd Bigint b and exponent *e
    such that fabs(d) = b * 2**e.  On return, *bbits gives the number of
-   significant bits of e; that is, 2**(*bbits-1) <= b < 2**(*bbits).
+   significant bits of b; that is, 2**(*bbits-1) <= b < 2**(*bbits).
 
    If d is zero, then b == 0, *e == -1010, *bbits = 0.
  */


More information about the Python-checkins mailing list