summaryrefslogtreecommitdiffstats
path: root/Modules/pyexpat.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-12-19 06:05:18 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2005-12-19 06:05:18 (GMT)
commit30b5c5d0116f8e670a6ca74dcb6bd076a919d681 (patch)
tree20c3e7e3ec210387941f3e9ac930537f71410a09 /Modules/pyexpat.c
parent5d0ad50f5acf84f2e8a1ca5c6951f333aef0e25a (diff)
downloadcpython-30b5c5d0116f8e670a6ca74dcb6bd076a919d681.zip
cpython-30b5c5d0116f8e670a6ca74dcb6bd076a919d681.tar.gz
cpython-30b5c5d0116f8e670a6ca74dcb6bd076a919d681.tar.bz2
Fix SF bug #1072182, problems with signed characters.
Most of these can be backported.
Diffstat (limited to 'Modules/pyexpat.c')
-rw-r--r--Modules/pyexpat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c
index ca2a850..c827581 100644
--- a/Modules/pyexpat.c
+++ b/Modules/pyexpat.c
@@ -1803,7 +1803,7 @@ get_version_string(void)
char *rev = rcsid;
int i = 0;
- while (!isdigit((int)*rev))
+ while (!isdigit(Py_CHARMASK(*rev)))
++rev;
while (rev[i] != ' ' && rev[i] != '\0')
++i;