Home
last modified time | relevance | path

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

/third_party/python/Include/
Dstructseq.h27 PyAPI_FUNC(int) PyStructSequence_InitType2(PyTypeObject *type,
/third_party/python/Python/
Dthread.c197 if (PyStructSequence_InitType2(&ThreadInfoType, &threadinfo_desc) < 0) in PyThread_GetInfo()
Dsysmodule.c2790 if (PyStructSequence_InitType2(&Hash_InfoType, &hash_info_desc) < 0) { in _PySys_InitCore()
2857 if (PyStructSequence_InitType2( in _PySys_InitCore()
Derrors.c1225 if (PyStructSequence_InitType2(&UnraisableHookArgsType, in _PyErr_InitTypes()
/third_party/python/Objects/
Dstructseq.c523 PyStructSequence_InitType2(PyTypeObject *type, PyStructSequence_Desc *desc) in PyStructSequence_InitType2() function
531 (void)PyStructSequence_InitType2(type, desc); in PyStructSequence_InitType()
Dfloatobject.c2026 if (PyStructSequence_InitType2(&FloatInfoType, &floatinfo_desc) < 0) { in _PyFloat_InitTypes()
Dlongobject.c5732 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/Modules/
Dsignalmodule.c1961 if (PyStructSequence_InitType2(&SiginfoType, &struct_siginfo_desc) < 0) {
D_threadmodule.c1629 if (PyStructSequence_InitType2(&ExceptHookArgsType, in thread_module_exec()
Dtimemodule.c1999 if (PyStructSequence_InitType2(&StructTimeType,
/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