mirror of
https://github.com/python/cpython.git
synced 2025-12-10 19:10:59 +00:00
Fix SF bug #1072182, problems with signed characters.
Most of these can be backported.
This commit is contained in:
parent
5d0ad50f5a
commit
30b5c5d011
11 changed files with 16 additions and 14 deletions
|
|
@ -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");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue