Home
last modified time | relevance | path

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

/third_party/python/Include/
Dclassobject.h41 PyAPI_DATA(PyTypeObject) PyInstanceMethod_Type;
43 #define PyInstanceMethod_Check(op) Py_IS_TYPE(op, &PyInstanceMethod_Type)
/third_party/python/Doc/c-api/
Dmethod.rst15 .. c:var:: PyTypeObject PyInstanceMethod_Type
24 :c:data:`PyInstanceMethod_Type`). The parameter must not be ``NULL``.
/third_party/python/Objects/
Dclassobject.c381 &PyInstanceMethod_Type); in PyInstanceMethod_New()
571 PyTypeObject PyInstanceMethod_Type = { variable
Dobject.c1832 INIT_TYPE(PyInstanceMethod_Type); in _PyTypes_Init()
/third_party/python/Tools/c-analyzer/
DTODO685 Objects/classobject.c:PyInstanceMethod_Type PyTypeObject PyInstanceMethod_Type
/third_party/python/Modules/
D_testcapimodule.c7263 Py_INCREF(&PyInstanceMethod_Type); in PyInit__testcapi()
7264 PyModule_AddObject(m, "instancemethod", (PyObject *)&PyInstanceMethod_Type); in PyInit__testcapi()
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv1596 Objects/classobject.c - PyInstanceMethod_Type -
/third_party/python/Misc/
DHISTORY16997 Python C API has gained a new type *PyInstanceMethod_Type* and the