Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson.

This commit is contained in:
Eric Smith 2009-11-29 17:40:57 +00:00
parent ccc690d650
commit c4ab8339e9
7 changed files with 59 additions and 20 deletions

View file

@ -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;