summaryrefslogtreecommitdiffstats
path: root/Python/dtoa.c
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-04 21:34:08 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-01-04 21:34:08 (GMT)
commit2505f1ee6cb2333ece24f35a18f15a75e0091cae (patch)
treeb1cff68d84bdfa57777a94674bc2127f1f3e8723 /Python/dtoa.c
parentfa833950bf8c99ead3e4c793982716e684000b14 (diff)
downloadcpython-2505f1ee6cb2333ece24f35a18f15a75e0091cae.zip
cpython-2505f1ee6cb2333ece24f35a18f15a75e0091cae.tar.gz
cpython-2505f1ee6cb2333ece24f35a18f15a75e0091cae.tar.bz2
Merged revisions 77304 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77304 | mark.dickinson | 2010-01-04 21:33:31 +0000 (Mon, 04 Jan 2010) | 9 lines 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. ........ ................
Diffstat (limited to 'Python/dtoa.c')
-rw-r--r--Python/dtoa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dtoa.c b/Python/dtoa.c
index 1cac941..4f8bab7 100644
--- a/Python/dtoa.c
+++ b/Python/dtoa.c
@@ -927,7 +927,7 @@ b2d(Bigint *a, int *e)
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.
*/