Home
last modified time | relevance | path

Searched refs:Py_ISALNUM (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Include/cpython/
Dpyctype.h26 #define Py_ISALNUM(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALNUM) macro
/third_party/python/Objects/
Dbytes_methods.c80 if (len == 1 && Py_ISALNUM(*p)) in _Py_bytes_isalnum()
89 if (!Py_ISALNUM(*p)) in _Py_bytes_isalnum()
Dcodeobject.c36 if (!Py_ISALNUM(*s) && *s != '_') in all_name_chars()
Dunicodeobject.c3575 if (Py_ISALNUM(c) || c == '.') { in _Py_normalize_encoding()
/third_party/python/Parser/
Dtokenizer.c176 while (Py_ISALNUM(t[0]) || in get_coding_spec()
1531 && ((unsigned char)ignore_end[0] >= 128 || Py_ISALNUM(ignore_end[0])))); in tok_get()
/third_party/python/Modules/
D_sre.c98 ((ch) <= 'z' && (Py_ISALNUM(ch) || (ch) == '_'))
/third_party/python/Doc/whatsnew/
D2.7.rst2180 :c:macro:`Py_ISALNUM`,