diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-01-04 21:33:31 +0000 |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-01-04 21:33:31 +0000 |
commit | 180e4cd54de7a08ba363ac18412fb74b8f10ec31 (patch) | |
tree | 847885fd7bf1ddb0a97f5383355c98fb44ec46c2 /Python/dtoa.c | |
parent | 4adb288f4eaea3a21295c11a3ca49313d7da8cc7 (diff) | |
download | cpython-git-180e4cd54de7a08ba363ac18412fb74b8f10ec31.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dtoa.c b/Python/dtoa.c index 1cac941748..4f8bab7860 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. */ |