Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dunicodeobject.h1020 PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
/external/python/cpython3/PC/
Dpython3.def698 PyUnicode_IsIdentifier=python39.PyUnicode_IsIdentifier
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a4.rst859 :c:func:`PyUnicode_IsIdentifier` does not call :c:func:`Py_FatalError`
/external/python/cpython3/Doc/c-api/
Dunicode.rst254 .. c:function:: int PyUnicode_IsIdentifier(PyObject *o)
/external/python/cpython3/Objects/
Dunicodeobject.c12367 PyUnicode_IsIdentifier(PyObject *self) in PyUnicode_IsIdentifier() function
12432 return PyBool_FromLong(PyUnicode_IsIdentifier(self)); in unicode_isidentifier_impl()
Dtypeobject.c2288 if (!PyUnicode_IsIdentifier(s)) { in valid_identifier()