Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/c-api/
Dtype.rst102 .. c:function:: PyObject* PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases)
/external/python/cpython3/PC/
Dpython3.def594 PyType_FromSpecWithBases=python37.PyType_FromSpecWithBases
/external/python/cpython3/Include/
Dobject.h453 PyAPI_FUNC(PyObject*) PyType_FromSpecWithBases(PyType_Spec*, PyObject*);
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tensor.cc942 PyType_FromSpecWithBases(&EagerTensor_Type_spec, bases)); in TFE_Py_InitEagerTensor()
/external/python/cpython3/Doc/data/
Drefcounts.dat2273 PyType_FromSpecWithBases:PyObject*::+1:
2274 PyType_FromSpecWithBases:PyType_Spec*:spec::
2275 PyType_FromSpecWithBases:PyObject*:bases:0:
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2974 PyType_FromSpecWithBases(&ScalarMapContainer_Type_spec, bases); in CheckAndGetInteger()
2998 PyType_FromSpecWithBases(&MessageMapContainer_Type_spec, bases); in CheckAndGetInteger()
/external/python/cpython3/Objects/
Dtypeobject.c2841 PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases) in PyType_FromSpecWithBases() function
2992 return PyType_FromSpecWithBases(spec, NULL); in PyType_FromSpec()
/external/python/cpython3/Misc/
DHISTORY7371 - Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber.