diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-01-14 18:23:30 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-01-14 18:23:30 (GMT) |
commit | d5890c8db5ed67d41719543a34b33f6a0e0a6f7f (patch) | |
tree | 9bf92ee63587d31ed44e8a37d90582913d37d95c /Include/unicodeobject.h | |
parent | 94d5a7174aaa107617b208ebc511a8f360196b1a (diff) | |
download | cpython-d5890c8db5ed67d41719543a34b33f6a0e0a6f7f.zip cpython-d5890c8db5ed67d41719543a34b33f6a0e0a6f7f.tar.gz cpython-d5890c8db5ed67d41719543a34b33f6a0e0a6f7f.tar.bz2 |
add str.casefold() (closes #13752)
Diffstat (limited to 'Include/unicodeobject.h')
-rw-r--r-- | Include/unicodeobject.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index e42631c..29d927f 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -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 */ ); |