Home
last modified time | relevance | path

Searched refs:PyInstanceMethod_Type (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Include/
Dclassobject.h42 PyAPI_DATA(PyTypeObject) PyInstanceMethod_Type;
44 #define PyInstanceMethod_Check(op) ((op)->ob_type == &PyInstanceMethod_Type)
/external/python/cpython3/Doc/c-api/
Dmethod.rst15 .. c:var:: PyTypeObject PyInstanceMethod_Type
24 :c:data:`PyInstanceMethod_Type`). The parameter must not be *NULL*.
/external/python/cpython3/Objects/
Dclassobject.c407 &PyInstanceMethod_Type); in PyInstanceMethod_New()
597 PyTypeObject PyInstanceMethod_Type = { variable
Dobject.c1900 if (PyType_Ready(&PyInstanceMethod_Type) < 0) in _Py_ReadyTypes()
/external/python/cpython3/Modules/
D_testcapimodule.c5360 Py_INCREF(&PyInstanceMethod_Type); in PyInit__testcapi()
5361 PyModule_AddObject(m, "instancemethod", (PyObject *)&PyInstanceMethod_Type); in PyInit__testcapi()
/external/python/cpython3/Misc/
DHISTORY16997 Python C API has gained a new type *PyInstanceMethod_Type* and the