commit | 30b5c5d0116f8e670a6ca74dcb6bd076a919d681 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Mon Dec 19 06:05:18 2005 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Mon Dec 19 06:05:18 2005 +0000 |
tree | 20c3e7e3ec210387941f3e9ac930537f71410a09 | |
parent | 5d0ad50f5acf84f2e8a1ca5c6951f333aef0e25a [diff] [blame] |
Fix SF bug #1072182, problems with signed characters. Most of these can be backported.
diff --git a/Modules/stropmodule.c b/Modules/stropmodule.c index ce19a05..ed72a71 100644 --- a/Modules/stropmodule.c +++ b/Modules/stropmodule.c
@@ -757,7 +757,7 @@ x = (long) PyOS_strtoul(s, &end, base); else x = PyOS_strtol(s, &end, base); - if (end == s || !isalnum((int)end[-1])) + if (end == s || !isalnum(Py_CHARMASK(end[-1]))) goto bad; while (*end && isspace(Py_CHARMASK(*end))) end++;