]> granicus.if.org Git - python/commitdiff
Keep py3k and trunk code in sync.
authorEric Smith <eric@trueblade.com>
Sat, 2 May 2009 09:58:09 +0000 (09:58 +0000)
committerEric Smith <eric@trueblade.com>
Sat, 2 May 2009 09:58:09 +0000 (09:58 +0000)
Objects/stringlib/formatter.h

index c5cda4cebf9fda12bf2139124f7aca3b7c26364d..1f3c535b4ae759e87dcb0641fd17fbae62a27d30 100644 (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"