Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/c-api/
Dtype.rst115 created using :c:func:`PyType_FromModuleAndSpec`.
150 .. c:function:: PyObject* PyType_FromModuleAndSpec(PyObject *module, PyType_Spec *spec, PyObject *b…
175 Equivalent to ``PyType_FromModuleAndSpec(NULL, spec, bases)``.
/external/python/cpython3/Include/
Dobject.h217 PyAPI_FUNC(PyObject*) PyType_FromModuleAndSpec(PyObject *, PyType_Spec *, PyObject *);
/external/python/cpython3/Modules/
D_testmultiphase.c805 temp = PyType_FromModuleAndSpec(m, &StateAccessType_spec, NULL); in meth_state_access_exec()
D_abc.c857 …state->_abc_data_type = (PyTypeObject *)PyType_FromModuleAndSpec(module, &_abc_data_type_spec, NUL… in _abcmodule_exec()
Dposixmodule.c15433 PyObject *ScandirIteratorType = PyType_FromModuleAndSpec(m, &ScandirIteratorType_spec, NULL); in posixmodule_exec()
15439 PyObject *DirEntryType = PyType_FromModuleAndSpec(m, &DirEntryType_spec, NULL); in posixmodule_exec()
/external/python/cpython3/Doc/data/
Drefcounts.dat2309 PyType_FromModuleAndSpec:PyObject*::+1:
2310 PyType_FromModuleAndSpec:PyObject*:module:+1:
2311 PyType_FromModuleAndSpec:PyType_Spec*:spec::
2312 PyType_FromModuleAndSpec:PyObject*:bases:0:
/external/python/cpython3/Misc/NEWS.d/
D3.9.1rc1.rst612 Update the refcounts info of ``PyType_FromModuleAndSpec``.
/external/python/cpython3/Objects/
Dtypeobject.c2872 return PyType_FromModuleAndSpec(NULL, spec, bases); in PyType_FromSpecWithBases()
2876 PyType_FromModuleAndSpec(PyObject *module, PyType_Spec *spec, PyObject *bases) in PyType_FromModuleAndSpec() function
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1238 * :pep:`573`: Added :c:func:`PyType_FromModuleAndSpec` to associate