diff --git a/Objects/floatobject.c b/Objects/floatobject.c index c556de8f426..0bb6961c86d 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -1216,7 +1216,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");