summaryrefslogtreecommitdiff
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-04-28 05:38:26 +0000
committerTim Peters <tim.peters@gmail.com>2001-04-28 05:38:26 +0000
commitb3d8d1f76c64998e7e7789955718c1c24b2f84c6 (patch)
tree98c2817230e26a4b04c1d3fe83966703fa6c6799 /Objects/unicodeobject.c
parent3a80c4a29c9eca9699b5bfe80541bc413a83bcef (diff)
downloadcpython-git-b3d8d1f76c64998e7e7789955718c1c24b2f84c6.tar.gz
A different approach to the problem reported in
Patch #419651: Metrowerks on Mac adds 0x itself C std says %#x and %#X conversion of 0 do not add the 0x/0X base marker. Metrowerks apparently does. Mark Favas reported the same bug under a Compaq compiler on Tru64 Unix, but no other libc broken in this respect is known (known to be OK under MSVC and gcc). So just try the damn thing at runtime and see what the platform does. Note that we've always had bugs here, but never knew it before because a relevant test case didn't exist before 2.1.
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 1d72c0d7bd..e52d628a88 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -4737,6 +4737,7 @@ formatint(Py_UNICODE *buf,
+ 1 + 1 = 24*/
char fmt[64]; /* plenty big enough! */
long x;
+ int use_native_c_format = 1;
x = PyInt_AsLong(v);
if (x == -1 && PyErr_Occurred())
@@ -4753,11 +4754,21 @@ formatint(Py_UNICODE *buf,
/* When converting 0 under %#x or %#X, C leaves off the base marker,
* but we want it (for consistency with other %#x conversions, and
* for consistency with Python's hex() function).
+ * BUG 28-Apr-2001 tim: At least two platform Cs (Metrowerks &
+ * Compaq Tru64) violate the std by converting 0 w/ leading 0x anyway.
+ * So add it only if the platform doesn't already.
*/
- if (x == 0 && (flags & F_ALT) && (type == 'x' || type == 'X'))
- sprintf(fmt, "0%c%%%s.%dl%c", type, "#", prec, type);
- else
- sprintf(fmt, "%%%s.%dl%c", (flags & F_ALT) ? "#" : "", prec, type);
+ if (x == 0 && (flags & F_ALT) && (type == 'x' || type == 'X')) {
+ /* Only way to know what the platform does is to try it. */
+ sprintf(fmt, type == 'x' ? "%#x" : "%#X", 0);
+ if (fmt[1] != (char)type) {
+ /* Supply our own leading 0x/0X -- needed under std C */
+ use_native_c_format = 0;
+ sprintf(fmt, "0%c%%#.%dl%c", type, prec, type);
+ }
+ }
+ if (use_native_c_format)
+ sprintf(fmt, "%%%s.%dl%c", (flags & F_ALT) ? "#" : "", prec, type);
return usprintf(buf, fmt, x);
}