Searched refs:PyMethod_Type (Results 1 – 11 of 11) sorted by relevance
19 PyAPI_DATA(PyTypeObject) PyMethod_Type;21 #define PyMethod_Check(op) ((op)->ob_type == &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
58 (void)PyObject_INIT(im, &PyMethod_Type); in PyMethod_New()62 im = PyObject_GC_New(PyMethodObject, &PyMethod_Type); in PyMethod_New()326 PyTypeObject PyMethod_Type = { variable
1861 if (PyType_Ready(&PyMethod_Type) < 0) in _Py_ReadyTypes()
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