summaryrefslogtreecommitdiffstats
path: root/Python/dynload_aix.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-02-09 22:11:27 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-02-09 22:11:27 (GMT)
commit4de7457009d3dac9c93cc5b471d20a8d5e92ff33 (patch)
tree7dd778385f577557e4fdafb09e55e1b9485f9407 /Python/dynload_aix.c
parentb6ed17344b456f397df800cc553fef94f5b1e58b (diff)
downloadcpython-4de7457009d3dac9c93cc5b471d20a8d5e92ff33.zip
cpython-4de7457009d3dac9c93cc5b471d20a8d5e92ff33.tar.gz
cpython-4de7457009d3dac9c93cc5b471d20a8d5e92ff33.tar.bz2
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.
I've left a couple of them in: zlib (third-party lib), getaddrinfo.c (doesn't include Python.h, and probably obsolete), _sre.c (legitimate use for the re.LOCALE flag).
Diffstat (limited to 'Python/dynload_aix.c')
-rw-r--r--Python/dynload_aix.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/dynload_aix.c b/Python/dynload_aix.c
index 149990d..b025cd3 100644
--- a/Python/dynload_aix.c
+++ b/Python/dynload_aix.c
@@ -4,7 +4,6 @@
#include "Python.h"
#include "importdl.h"
-#include <ctype.h> /* for isdigit() */
#include <errno.h> /* for global errno */
#include <string.h> /* for strerror() */
#include <stdlib.h> /* for malloc(), free() */
@@ -144,7 +143,7 @@ aix_loaderror(const char *pathname)
if (nerr == load_errtab[j].errNo && load_errtab[j].errstr)
ERRBUF_APPEND(load_errtab[j].errstr);
}
- while (isdigit(Py_CHARMASK(*message[i]))) message[i]++ ;
+ while (Py_ISDIGIT(Py_CHARMASK(*message[i]))) message[i]++ ;
ERRBUF_APPEND(message[i]);
ERRBUF_APPEND("\n");
}