Searched refs:PyType_FromSpecWithBases (Results 1 – 8 of 8) sorted by relevance
102 .. c:function:: PyObject* PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases)
594 PyType_FromSpecWithBases=python37.PyType_FromSpecWithBases
453 PyAPI_FUNC(PyObject*) PyType_FromSpecWithBases(PyType_Spec*, PyObject*);
942 PyType_FromSpecWithBases(&EagerTensor_Type_spec, bases)); in TFE_Py_InitEagerTensor()
2273 PyType_FromSpecWithBases:PyObject*::+1:2274 PyType_FromSpecWithBases:PyType_Spec*:spec::2275 PyType_FromSpecWithBases:PyObject*:bases:0:
2974 PyType_FromSpecWithBases(&ScalarMapContainer_Type_spec, bases); in CheckAndGetInteger()2998 PyType_FromSpecWithBases(&MessageMapContainer_Type_spec, bases); in CheckAndGetInteger()
2841 PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases) in PyType_FromSpecWithBases() function2992 return PyType_FromSpecWithBases(spec, NULL); in PyType_FromSpec()
7371 - Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber.