Searched refs:PyUnicode_IsIdentifier (Results 1 – 9 of 9) sorted by relevance
1040 PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
748 function,PyUnicode_IsIdentifier,3.2,
820 …<elf-symbol name='PyUnicode_IsIdentifier' type='func-type' binding='global-binding' visibility='de…10814 …<function-decl name='PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='./Inc…10987 …PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='Objects/unicodeobject.c' l…
673 EXPORT_FUNC(PyUnicode_IsIdentifier)
859 :c:func:`PyUnicode_IsIdentifier` does not call :c:func:`Py_FatalError`
1442 function PyUnicode_IsIdentifier
253 .. c:function:: int PyUnicode_IsIdentifier(PyObject *o)
12639 PyUnicode_IsIdentifier(PyObject *self) in PyUnicode_IsIdentifier() function12704 return PyBool_FromLong(PyUnicode_IsIdentifier(self)); in unicode_isidentifier_impl()
2417 if (!PyUnicode_IsIdentifier(s)) { in valid_identifier()