summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-02 19:45:11 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-07-02 19:45:11 (GMT)
commitdf1bc015f24ed80242f118d96f98fe2252b2f3a2 (patch)
treeaba102e403cdd980fd41b66e05179aaf12c9ecc4 /Objects
parenta4b6862a8617a8ba64ce6d1054b9879c75a40887 (diff)
downloadcpython-df1bc015f24ed80242f118d96f98fe2252b2f3a2.zip
cpython-df1bc015f24ed80242f118d96f98fe2252b2f3a2.tar.gz
cpython-df1bc015f24ed80242f118d96f98fe2252b2f3a2.tar.bz2
Merged revisions 82447 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r82447 | benjamin.peterson | 2010-07-02 14:41:39 -0500 (Fri, 02 Jul 2010) | 1 line 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 c556de8f..0bb6961 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");