summaryrefslogtreecommitdiffstats
path: root/Objects/stringlib
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2009-11-29 17:40:57 (GMT)
committerEric Smith <eric@trueblade.com>2009-11-29 17:40:57 (GMT)
commitc4ab8339e9a966d9d8e601531489a5436d197f47 (patch)
tree3fb5a2fd6a2cd465bb376d864e3e6ee65d22eb31 /Objects/stringlib
parentccc690d650f0b784c5d0445d0c34d372d2d24ec3 (diff)
downloadcpython-c4ab8339e9a966d9d8e601531489a5436d197f47.zip
cpython-c4ab8339e9a966d9d8e601531489a5436d197f47.tar.gz
cpython-c4ab8339e9a966d9d8e601531489a5436d197f47.tar.bz2
Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson.
Diffstat (limited to 'Objects/stringlib')
-rw-r--r--Objects/stringlib/formatter.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h
index f09578f..f4a3ea3 100644
--- a/Objects/stringlib/formatter.h
+++ b/Objects/stringlib/formatter.h
@@ -937,13 +937,6 @@ format_float_internal(PyObject *value,
format the result. We take care of that later. */
type = 'g';
-#if PY_VERSION_HEX < 0x0301000
- /* 'F' is the same as 'f', per the PEP */
- /* This is no longer the case in 3.x */
- if (type == 'F')
- type = 'f';
-#endif
-
val = PyFloat_AsDouble(value);
if (val == -1.0 && PyErr_Occurred())
goto done;
@@ -1128,13 +1121,6 @@ format_complex_internal(PyObject *value,
format the result. We take care of that later. */
type = 'g';
-#if PY_VERSION_HEX < 0x03010000
- /* This is no longer the case in 3.x */
- /* 'F' is the same as 'f', per the PEP */
- if (type == 'F')
- type = 'f';
-#endif
-
if (precision < 0)
precision = default_precision;