From: Benjamin Peterson Date: Fri, 2 Jul 2010 19:41:39 +0000 (+0000) Subject: add space X-Git-Tag: v2.7~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf76d1f0c7400847c1847dbd1117c432f72c1be7;p=thirdparty%2FPython%2Fcpython.git add space --- diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 682bafb47ae5..8217ee6e4332 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");