Home
last modified time | relevance | path

Searched refs:PyStructSequence_InitType2 (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Include/
Dstructseq.h27 PyAPI_FUNC(int) PyStructSequence_InitType2(PyTypeObject *type,
/third_party/python/Python/
Dthread.c203 if (PyStructSequence_InitType2(&ThreadInfoType, &threadinfo_desc) < 0) in PyThread_GetInfo()
Dsysmodule.c2912 if (PyStructSequence_InitType2(&Hash_InfoType, &hash_info_desc) < 0) { in _PySys_InitCore()
2981 if (PyStructSequence_InitType2( in _PySys_InitCore()
Derrors.c1248 if (PyStructSequence_InitType2(&UnraisableHookArgsType, in _PyErr_InitTypes()
/third_party/python/Objects/
Dstructseq.c518 PyStructSequence_InitType2(PyTypeObject *type, PyStructSequence_Desc *desc) in PyStructSequence_InitType2() function
526 (void)PyStructSequence_InitType2(type, desc); in PyStructSequence_InitType()
Dfloatobject.c2002 if (PyStructSequence_InitType2(&FloatInfoType, &floatinfo_desc) < 0) { in _PyFloat_InitTypes()
Dlongobject.c6171 if (PyStructSequence_InitType2(&Int_InfoType, &int_info_desc) < 0) { in _PyLong_InitTypes()
/third_party/python/Doc/c-api/
Dtuple.rst133 .. c:function:: int PyStructSequence_InitType2(PyTypeObject *type, PyStructSequence_Desc *desc)
/third_party/python/Doc/data/
Drefcounts.dat2104 PyStructSequence_InitType2:int:::
2105 PyStructSequence_InitType2:PyTypeObject*:type:+1:
2106 PyStructSequence_InitType2:PyStructSequence_Desc*:desc::
/third_party/python/Doc/whatsnew/
D3.4.rst1910 * New function :c:func:`PyStructSequence_InitType2` supplements the
/third_party/python/Misc/
DHISTORY4322 - Issue #18520: Add a new PyStructSequence_InitType2() function, same than