summaryrefslogtreecommitdiffstats
path: root/Python/mystrtoul.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-02-09 22:14:42 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-02-09 22:14:42 (GMT)
commitc73c561181c3ea3bf15c908a827878e1450a5ac6 (patch)
treef924a60b5c1b5aa172cf3eba2c39605789a7017c /Python/mystrtoul.c
parent859cd4723f07e2b1da7387f5be0f2ce0a195974d (diff)
parent4de7457009d3dac9c93cc5b471d20a8d5e92ff33 (diff)
downloadcpython-c73c561181c3ea3bf15c908a827878e1450a5ac6.zip
cpython-c73c561181c3ea3bf15c908a827878e1450a5ac6.tar.gz
cpython-c73c561181c3ea3bf15c908a827878e1450a5ac6.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), mpdecimal (needs to build without Python.h).
Diffstat (limited to 'Python/mystrtoul.c')
-rw-r--r--Python/mystrtoul.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/mystrtoul.c b/Python/mystrtoul.c
index 52502cb..8a54cbf 100644
--- a/Python/mystrtoul.c
+++ b/Python/mystrtoul.c
@@ -99,7 +99,7 @@ PyOS_strtoul(register char *str, char **ptr, int base)
register int ovlimit; /* required digits to overflow */
/* skip leading white space */
- while (*str && isspace(Py_CHARMASK(*str)))
+ while (*str && Py_ISSPACE(Py_CHARMASK(*str)))
++str;
/* check for leading 0b, 0o or 0x for auto-base or base 16 */
@@ -138,7 +138,7 @@ PyOS_strtoul(register char *str, char **ptr, int base)
/* skip all zeroes... */
while (*str == '0')
++str;
- while (isspace(Py_CHARMASK(*str)))
+ while (Py_ISSPACE(Py_CHARMASK(*str)))
++str;
if (ptr)
*ptr = str;
@@ -266,7 +266,7 @@ PyOS_strtol(char *str, char **ptr, int base)
unsigned long uresult;
char sign;
- while (*str && isspace(Py_CHARMASK(*str)))
+ while (*str && Py_ISSPACE(Py_CHARMASK(*str)))
str++;
sign = *str;