summaryrefslogtreecommitdiffstats
path: root/Python/traceback.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/traceback.c')
-rw-r--r--Python/traceback.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/traceback.c b/Python/traceback.c
index 551f9d6..44358ed 100644
--- a/Python/traceback.c
+++ b/Python/traceback.c
@@ -463,12 +463,11 @@ dump_decimal(int fd, int value)
static void
dump_hexadecimal(int width, unsigned long value, int fd)
{
- const char *hexdigits = "0123456789abcdef";
int len;
char buffer[sizeof(unsigned long) * 2 + 1];
len = 0;
do {
- buffer[len] = hexdigits[value & 15];
+ buffer[len] = Py_hexdigits[value & 15];
value >>= 4;
len++;
} while (len < width || value);