summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-02 19:41:39 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-07-02 19:41:39 (GMT)
commitcf76d1f0c7400847c1847dbd1117c432f72c1be7 (patch)
tree463a58e442753b5f670bbf92c549ec40f3a62199 /Objects
parent2547ce7fd80c3787350236a08eb2189fb3db9ce8 (diff)
downloadcpython-cf76d1f0c7400847c1847dbd1117c432f72c1be7.zip
cpython-cf76d1f0c7400847c1847dbd1117c432f72c1be7.tar.gz
cpython-cf76d1f0c7400847c1847dbd1117c432f72c1be7.tar.bz2
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 682bafb..8217ee6 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");