Home
last modified time | relevance | path

Searched refs:Py_ISLOWER (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Objects/
Dbytes_methods.c193 return PyBool_FromLong(Py_ISLOWER(*p)); in _Py_bytes_islower()
204 else if (!cased && Py_ISLOWER(*p)) in _Py_bytes_islower()
236 if (Py_ISLOWER(*p)) in _Py_bytes_isupper()
281 else if (Py_ISLOWER(ch)) { in _Py_bytes_istitle()
340 if (Py_ISLOWER(c)) { in _Py_bytes_title()
384 if (Py_ISLOWER(c)) { in _Py_bytes_swapcase()
/third_party/python/Include/cpython/
Dpyctype.h21 #define Py_ISLOWER(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_LOWER) macro
/third_party/python/Doc/whatsnew/
D2.7.rst2183 :c:macro:`Py_ISLOWER`,
/third_party/python/Misc/
DHISTORY11820 (ISLOWER()/ISUPPER()/etc) have now been removed: use Py_ISLOWER() etc instead.