[Python-checkins] r74219 - python/trunk/Objects/stringlib/formatter.h
eric.smith
python-checkins at python.org
Mon Jul 27 03:58:26 CEST 2009
Author: eric.smith
Date: Mon Jul 27 03:58:25 2009
New Revision: 74219
Log:
Sync trunk and py3k versions of string formatting. Will manually merge into py3k.
Modified:
python/trunk/Objects/stringlib/formatter.h
Modified: python/trunk/Objects/stringlib/formatter.h
==============================================================================
--- python/trunk/Objects/stringlib/formatter.h (original)
+++ python/trunk/Objects/stringlib/formatter.h Mon Jul 27 03:58:25 2009
@@ -920,9 +920,12 @@
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())
@@ -1114,9 +1117,12 @@
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;
More information about the Python-checkins
mailing list