From 5eb23d4f6ec4e04494d52202d61a6c60146e4695 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 29 Jun 2005 23:29:56 +0000 Subject: SF bug #1224347: int/long unification and hex() Hex longs now print with lowercase letters like their int counterparts. --- Objects/stringobject.c | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) (limited to 'Objects/stringobject.c') diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 176e0d2b61..8a9dc529f8 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -3753,18 +3753,12 @@ _PyString_FormatLong(PyObject *val, int flags, int prec, int type, } /* Fix up case for hex conversions. */ - switch (type) { - case 'x': - /* Need to convert all upper case letters to lower case. */ + if (type == 'X') { + /* Need to convert all lower case letters to upper case. + and need to convert 0x to 0X (and -0x to -0X). */ for (i = 0; i < len; i++) - if (buf[i] >= 'A' && buf[i] <= 'F') - buf[i] += 'a'-'A'; - break; - case 'X': - /* Need to convert 0x to 0X (and -0x to -0X). */ - if (buf[sign + 1] == 'x') - buf[sign + 1] = 'X'; - break; + if (buf[i] >= 'a' && buf[i] <= 'x') + buf[i] -= 'a'-'A'; } *pbuf = buf; *plen = len; -- cgit v1.2.1