From fd4a360d25439f989aeeb734990d81f9c6a20ba4 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 2 Jul 2010 19:41:39 +0000 Subject: add space --- Objects/floatobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects') 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"); -- cgit v1.2.1