summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-02 19:41:39 +0000
committerBenjamin Peterson <benjamin@python.org>2010-07-02 19:41:39 +0000
commitfd4a360d25439f989aeeb734990d81f9c6a20ba4 (patch)
tree09ddebcc75580c4e1addfac4c18f82d8397750bf /Objects
parente2fe21faffc57d6cdc76ed9a6a2f746810c9e0ef (diff)
downloadcpython-fd4a360d25439f989aeeb734990d81f9c6a20ba4.tar.gz
add space
Diffstat (limited to 'Objects')
-rw-r--r--Objects/floatobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 682bafb47a..8217ee6e43 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -1347,7 +1347,7 @@ float_hex(PyObject *v)
return float_str((PyFloatObject *)v);
if (x == 0.0) {
- if(copysign(1.0, x) == -1.0)
+ if (copysign(1.0, x) == -1.0)
return PyString_FromString("-0x0.0p+0");
else
return PyString_FromString("0x0.0p+0");