Searched refs:PyMethod_Type (Results 1 – 7 of 7) sorted by relevance
20 PyAPI_DATA(PyTypeObject) PyMethod_Type;22 #define PyMethod_Check(op) Py_IS_TYPE(op, &PyMethod_Type)
57 .. c:var:: PyTypeObject PyMethod_Type67 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
1841 INIT_TYPE(PyMethod_Type); in _PyTypes_Init()
686 Objects/classobject.c:PyMethod_Type PyTypeObject PyMethod_Type
1115 "Emulate PyMethod_Type in Objects/classobject.c"
1595 Objects/classobject.c - PyMethod_Type -