Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dunicodeobject.h1040 PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
/external/python/cpython3/Doc/data/
Dstable_abi.dat748 function,PyUnicode_IsIdentifier,3.2,
Dpython3.10.abi820 …<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…
10987PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='Objects/unicodeobject.c' l…
/external/python/cpython3/PC/
Dpython3dll.c673 EXPORT_FUNC(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/Misc/
Dstable_abi.txt1442 function PyUnicode_IsIdentifier
/external/python/cpython3/Doc/c-api/
Dunicode.rst253 .. c:function:: int PyUnicode_IsIdentifier(PyObject *o)
/external/python/cpython3/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()