Home
last modified time | relevance | path

Searched refs:PyType_FromSpecWithBases (Results 1 – 19 of 19) sorted by relevance

/third_party/python/Doc/c-api/
Dtype.rst190 .. c:function:: PyObject* PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases)
198 Equivalent to ``PyType_FromSpecWithBases(spec, NULL)``.
220 :c:func:`PyType_FromSpecWithBases` sets it automatically.
271 :py:func:`PyType_FromSpecWithBases` instead.
Dgcsupport.rst50 call it like :c:func:`PyType_FromSpecWithBases` or
Dtypeobj.rst2072 :c:func:`PyType_FromSpec`, :c:func:`PyType_FromSpecWithBases`,
/third_party/protobuf/python/google/protobuf/pyext/
Dmap_container.cc1016 PyType_FromSpecWithBases(&ScalarMapContainer_Type_spec, bases.get())); in InitMapContainers()
1034 PyType_FromSpecWithBases(&MessageMapContainer_Type_spec, bases.get())); in InitMapContainers()
/third_party/python/Include/
Dobject.h232 PyAPI_FUNC(PyObject*) PyType_FromSpecWithBases(PyType_Spec*, PyObject*);
/third_party/python/Objects/
Dstructseq.c571 type = (PyTypeObject *)PyType_FromSpecWithBases(&spec, (PyObject *)&PyTuple_Type); in PyStructSequence_NewType()
Dtypeobject.c3364 PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases) in PyType_FromSpecWithBases() function
3622 return PyType_FromSpecWithBases(spec, NULL); in PyType_FromSpec()
/third_party/python/PC/
Dpython3dll.c593 EXPORT_FUNC(PyType_FromSpecWithBases)
/third_party/python/Doc/data/
Dstable_abi.dat640 function,PyType_FromSpecWithBases,3.3,
Drefcounts.dat2294 PyType_FromSpecWithBases:PyObject*::+1:
2295 PyType_FromSpecWithBases:PyType_Spec*:spec::
2296 PyType_FromSpecWithBases:PyObject*:bases:0:
/third_party/python/Misc/NEWS.d/
D3.9.0b1.rst948 :c:func:`PyType_FromSpecWithBases` will visit its class object when
D3.10.0a3.rst1250 The :c:func:`PyType_FromSpecWithBases` and
D3.10.0a1.rst926 Instances of types created with :c:func:`PyType_FromSpecWithBases` will no
/third_party/python/Modules/
D_hashopenssl.c2147 state->EVPXOFtype = (PyTypeObject *)PyType_FromSpecWithBases( in hashlib_init_evpxoftype()
D_testcapimodule.c7308 PyObject *HeapCTypeSubclass = PyType_FromSpecWithBases(&HeapCTypeSubclass_spec, subclass_bases); in PyInit__testcapi()
7349 PyObject *HeapCTypeSubclassWithFinalizer = PyType_FromSpecWithBases( in PyInit__testcapi()
D_ssl.c5652 state->PySSLErrorObject = PyType_FromSpecWithBases( in sslmodule_init_exceptions()
/third_party/python/Misc/
Dstable_abi.txt1749 function PyType_FromSpecWithBases
DHISTORY7371 - Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber.
/third_party/python/Doc/whatsnew/
D3.10.rst2069 * The :c:func:`PyType_FromSpecWithBases` and :c:func:`PyType_FromModuleAndSpec`