Searched refs:PyMethod_Type (Results 1 – 13 of 13) sorted by relevance
20 PyAPI_DATA(PyTypeObject) PyMethod_Type;22 #define PyMethod_Check(op) Py_IS_TYPE(op, &PyMethod_Type)
39 PyAPI_DATA(PyTypeObject) PyClass_Type, PyInstance_Type, PyMethod_Type;43 #define PyMethod_Check(op) ((op)->ob_type == &PyMethod_Type)
13 .. c:var:: PyTypeObject PyMethod_Type23 Return true if *o* is a method object (has type :c:data:`PyMethod_Type`). The
56 .. c:var:: PyTypeObject PyMethod_Type66 Return true if *o* is a method object (has type :c:data:`PyMethod_Type`). The
39 assert(Py_IS_TYPE(method, &PyMethod_Type)); in method_vectorcall()105 PyMethodObject *im = PyObject_GC_New(PyMethodObject, &PyMethod_Type); in PyMethod_New()331 PyTypeObject PyMethod_Type = { variable
1793 INIT_TYPE(&PyMethod_Type, "method"); in _PyTypes_Init()
51 PyMethod_Type
2257 (void)PyObject_INIT(im, &PyMethod_Type); in PyMethod_New()2261 im = PyObject_GC_New(PyMethodObject, &PyMethod_Type); in PyMethod_New()2631 PyTypeObject PyMethod_Type = { variable
2179 if (PyType_Ready(&PyMethod_Type) < 0) in _Py_ReadyTypes()
211 "PyMethod_Type"
309 :c:type:`PyMethod_Type` in :source:`Objects/classobject.c` is a single object
691 Objects/classobject.c:PyMethod_Type PyTypeObject PyMethod_Type
1493 Objects/classobject.c - PyMethod_Type variable PyTypeObject PyMethod_Type