Keep py3k and trunk code in sync.

This commit is contained in:
Eric Smith 2009-05-02 09:58:09 +00:00
parent 24cc78ac61
commit 27f204dc29
1 changed files with 4 additions and 0 deletions

View File

@ -934,8 +934,12 @@ format_float_internal(PyObject *value,
if (precision < 0)
precision = 6;
#if PY_VERSION_HEX < 0x03010000
/* 3.1 no longer converts large 'f' to 'g'. */
if ((type == 'f' || type == 'F') && fabs(val) >= 1e50)
type = 'g';
#endif
/* Cast "type", because if we're in unicode we need to pass a
8-bit char. This is safe, because we've restricted what "type"