Home
last modified time | relevance | path

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

/third_party/python/Include/
Dunicodeobject.h1040 PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
/third_party/python/Doc/data/
Dstable_abi.dat748 function,PyUnicode_IsIdentifier,3.2,
/third_party/python/PC/
Dpython3dll.c673 EXPORT_FUNC(PyUnicode_IsIdentifier)
/third_party/python/Misc/NEWS.d/
D3.9.0a4.rst859 :c:func:`PyUnicode_IsIdentifier` does not call :c:func:`Py_FatalError`
/third_party/python/Misc/
Dstable_abi.txt1442 function PyUnicode_IsIdentifier
/third_party/python/Doc/c-api/
Dunicode.rst253 .. c:function:: int PyUnicode_IsIdentifier(PyObject *o)
/third_party/python/Objects/
Dunicodeobject.c12639 PyUnicode_IsIdentifier(PyObject *self) in PyUnicode_IsIdentifier() function
12704 return PyBool_FromLong(PyUnicode_IsIdentifier(self)); in unicode_isidentifier_impl()
Dtypeobject.c2417 if (!PyUnicode_IsIdentifier(s)) { in valid_identifier()