mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +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
|
|
@ -987,7 +987,7 @@ _gethash(const char *s, int len, int scale)
|
|||
unsigned long h = 0;
|
||||
unsigned long ix;
|
||||
for (i = 0; i < len; i++) {
|
||||
h = (h * scale) + (unsigned char) Py_TOUPPER(Py_CHARMASK(s[i]));
|
||||
h = (h * scale) + (unsigned char) Py_TOUPPER(s[i]);
|
||||
ix = h & 0xff000000;
|
||||
if (ix)
|
||||
h = (h ^ ((ix>>24) & 0xff)) & 0x00ffffff;
|
||||
|
|
@ -1157,7 +1157,7 @@ _cmpname(PyObject *self, int code, const char* name, int namelen)
|
|||
if (!_getucname(self, code, buffer, NAME_MAXLEN, 1))
|
||||
return 0;
|
||||
for (i = 0; i < namelen; i++) {
|
||||
if (Py_TOUPPER(Py_CHARMASK(name[i])) != buffer[i])
|
||||
if (Py_TOUPPER(name[i]) != buffer[i])
|
||||
return 0;
|
||||
}
|
||||
return buffer[namelen] == '\0';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue