mirror of
https://github.com/python/cpython.git
synced 2025-07-14 06:45:17 +00:00
add str.casefold() (closes #13752)
This commit is contained in:
parent
94d5a7174a
commit
d5890c8db5
8 changed files with 493 additions and 137 deletions
|
@ -2023,6 +2023,11 @@ PyAPI_FUNC(int) _PyUnicode_ToUpperFull(
|
|||
Py_UCS4 *res
|
||||
);
|
||||
|
||||
PyAPI_FUNC(int) _PyUnicode_ToFoldedFull(
|
||||
Py_UCS4 ch, /* Unicode character */
|
||||
Py_UCS4 *res
|
||||
);
|
||||
|
||||
PyAPI_FUNC(int) _PyUnicode_IsCaseIgnorable(
|
||||
Py_UCS4 ch /* Unicode character */
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue