Home
last modified time | relevance | path

Searched refs:PyUnicode_IsIdentifier (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Include/
Dunicodeobject.h1036 PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
/third_party/python/PC/
Dpython3dll.c686 EXPORT_FUNC(PyUnicode_IsIdentifier)
/third_party/python/Doc/data/
Dstable_abi.dat768 function,PyUnicode_IsIdentifier,3.2,,
/third_party/python/Misc/
Dstable_abi.toml1534 [function.PyUnicode_IsIdentifier]
DNEWS13870 - bpo-39500: :c:func:`PyUnicode_IsIdentifier` does not call
/third_party/python/Doc/c-api/
Dunicode.rst254 .. c:function:: int PyUnicode_IsIdentifier(PyObject *o)
/third_party/python/Objects/
Dunicodeobject.c12324 PyUnicode_IsIdentifier(PyObject *self) in PyUnicode_IsIdentifier() function
12389 return PyBool_FromLong(PyUnicode_IsIdentifier(self)); in unicode_isidentifier_impl()
Dtypeobject.c2438 if (!PyUnicode_IsIdentifier(s)) { in valid_identifier()