mirror of
https://github.com/python/cpython.git
synced 2024-11-24 18:34:43 +08:00
Optimize _PyUnicode_FindMaxChar() find pure ASCII strings
This commit is contained in:
parent
fea73efc9e
commit
94d558b063
@ -1985,6 +1985,9 @@ _PyUnicode_FindMaxChar(PyObject *unicode, Py_ssize_t start, Py_ssize_t end)
|
||||
if (start == end)
|
||||
return 127;
|
||||
|
||||
if (PyUnicode_IS_ASCII(unicode))
|
||||
return 127;
|
||||
|
||||
kind = PyUnicode_KIND(unicode);
|
||||
startptr = PyUnicode_DATA(unicode);
|
||||
endptr = (char *)startptr + end * kind;
|
||||
|
Loading…
Reference in New Issue
Block a user