mirror of
https://github.com/python/cpython.git
synced 2025-09-18 14:40:43 +00:00
bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095)
This commit is contained in:
parent
801f925998
commit
2ec7010206
7 changed files with 15 additions and 15 deletions
|
@ -140,7 +140,7 @@ aix_loaderror(const char *pathname)
|
|||
if (nerr == load_errtab[j].errNo && load_errtab[j].errstr)
|
||||
ERRBUF_APPEND(load_errtab[j].errstr);
|
||||
}
|
||||
while (Py_ISDIGIT(Py_CHARMASK(*message[i]))) message[i]++ ;
|
||||
while (Py_ISDIGIT(*message[i])) message[i]++ ;
|
||||
ERRBUF_APPEND(message[i]);
|
||||
ERRBUF_APPEND("\n");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue