Fix SF bug #1072182, problems with signed characters.

Most of these can be backported.
This commit is contained in:
Neal Norwitz 2005-12-19 06:05:18 +00:00
parent 5d0ad50f5a
commit 30b5c5d011
11 changed files with 16 additions and 14 deletions

View file

@ -144,7 +144,7 @@ aix_loaderror(const char *pathname)
if (nerr == load_errtab[j].errNo && load_errtab[j].errstr)
ERRBUF_APPEND(load_errtab[j].errstr);
}
while (isdigit(*message[i])) message[i]++ ;
while (isdigit(Py_CHARMASK(*message[i]))) message[i]++ ;
ERRBUF_APPEND(message[i]);
ERRBUF_APPEND("\n");
}