diff options
author | Jordon Xu <46997731+qigangxu@users.noreply.github.com> | 2019-09-10 16:04:08 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-09-10 16:04:08 (GMT) |
commit | 2ec70102066fe5534f1a62e8f496d2005e1697db (patch) | |
tree | 1d406e9e646da303521b874bf46acca47c203b67 /Python/dynload_aix.c | |
parent | 801f925998cc393260f36f5ac77369fef2373ad1 (diff) | |
download | cpython-2ec70102066fe5534f1a62e8f496d2005e1697db.zip cpython-2ec70102066fe5534f1a62e8f496d2005e1697db.tar.gz cpython-2ec70102066fe5534f1a62e8f496d2005e1697db.tar.bz2 |
bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095)
Diffstat (limited to 'Python/dynload_aix.c')
-rw-r--r-- | Python/dynload_aix.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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"); } |