summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-01-27 04:20:14 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-01-27 04:20:14 (GMT)
commit3f5db3940ff71428d1eecb3d4eebe68d9c3d216d (patch)
treeef8c20da3ad9050700786a6999e1094f7fe397ba /Objects/floatobject.c
parent1c1cadbbca21f75733bb201e7c94863b6e6ed206 (diff)
downloadcpython-3f5db3940ff71428d1eecb3d4eebe68d9c3d216d.zip
cpython-3f5db3940ff71428d1eecb3d4eebe68d9c3d216d.tar.gz
cpython-3f5db3940ff71428d1eecb3d4eebe68d9c3d216d.tar.bz2
Fix a few typos and a double semicolon. Patch by Eitan Adler.
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r--Objects/floatobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index a42be71..b571ca8 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -289,7 +289,7 @@ float_repr(PyFloatObject *v)
* may lose info from fractional bits. Converting the integer to a double
* also has two failure modes: (1) a long int may trigger overflow (too
* large to fit in the dynamic range of a C double); (2) even a C long may have
- * more bits than fit in a C double (e.g., on a a 64-bit box long may have
+ * more bits than fit in a C double (e.g., on a 64-bit box long may have
* 63 bits of precision, but a C double probably has only 53), and then
* we can falsely claim equality when low-order integer bits are lost by
* coercion to double. So this part is painful too.