diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-11-23 20:54:09 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-11-23 20:54:09 (GMT) |
commit | 9dd5e16c5d8e7d9e7fa9c2fb1b2754df8161ab2b (patch) | |
tree | be26a88852bfbd0110960453ce7fa61b0ad6df00 /Objects/stringobject.c | |
parent | faa25999a32ed55a065c2deb4208049197029a0e (diff) | |
download | cpython-9dd5e16c5d8e7d9e7fa9c2fb1b2754df8161ab2b.zip cpython-9dd5e16c5d8e7d9e7fa9c2fb1b2754df8161ab2b.tar.gz cpython-9dd5e16c5d8e7d9e7fa9c2fb1b2754df8161ab2b.tar.bz2 |
Issue #7117, continued: Remove substitution of %g-style formatting for
%f-style formatting, which used to occur at high precision. Float formatting
should now be consistent between 2.7 and 3.1.
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r-- | Objects/stringobject.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 1d9ba8c..6636b9a 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -4398,9 +4398,6 @@ formatfloat(PyObject *v, int flags, int prec, int type) if (prec < 0) prec = 6; - if (type == 'f' && fabs(x) >= 1e50) - type = 'g'; - p = PyOS_double_to_string(x, type, prec, (flags & F_ALT) ? Py_DTSF_ALT : 0, NULL); |