diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-07-02 19:45:11 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-07-02 19:45:11 (GMT) |
commit | df1bc015f24ed80242f118d96f98fe2252b2f3a2 (patch) | |
tree | aba102e403cdd980fd41b66e05179aaf12c9ecc4 /Objects | |
parent | a4b6862a8617a8ba64ce6d1054b9879c75a40887 (diff) | |
download | cpython-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.c | 2 |
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"); |