Searched refs:PyInstanceMethod_Type (Results 1 – 6 of 6) sorted by relevance
42 PyAPI_DATA(PyTypeObject) PyInstanceMethod_Type;44 #define PyInstanceMethod_Check(op) ((op)->ob_type == &PyInstanceMethod_Type)
15 .. c:var:: PyTypeObject PyInstanceMethod_Type24 :c:data:`PyInstanceMethod_Type`). The parameter must not be *NULL*.
407 &PyInstanceMethod_Type); in PyInstanceMethod_New()597 PyTypeObject PyInstanceMethod_Type = { variable
1900 if (PyType_Ready(&PyInstanceMethod_Type) < 0) in _Py_ReadyTypes()
5360 Py_INCREF(&PyInstanceMethod_Type); in PyInit__testcapi()5361 PyModule_AddObject(m, "instancemethod", (PyObject *)&PyInstanceMethod_Type); in PyInit__testcapi()
16997 Python C API has gained a new type *PyInstanceMethod_Type* and the