commit | 2ec70102066fe5534f1a62e8f496d2005e1697db | [log] [tgz] |
---|---|---|
author | Jordon Xu <46997731+qigangxu@users.noreply.github.com> | Wed Sep 11 00:04:08 2019 +0800 |
committer | Steve Dower <steve.dower@python.org> | Tue Sep 10 17:04:08 2019 +0100 |
tree | 1d406e9e646da303521b874bf46acca47c203b67 | |
parent | 801f925998cc393260f36f5ac77369fef2373ad1 [diff] [blame] |
bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095)
diff --git a/Python/dynload_aix.c b/Python/dynload_aix.c index b3ff8e2..684f10a 100644 --- a/Python/dynload_aix.c +++ b/Python/dynload_aix.c
@@ -140,7 +140,7 @@ 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"); }