Home
last modified time | relevance | path

Searched refs:PyMethod_Type (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Include/
Dclassobject.h20 PyAPI_DATA(PyTypeObject) PyMethod_Type;
22 #define PyMethod_Check(op) Py_IS_TYPE(op, &PyMethod_Type)
/third_party/python/Doc/c-api/
Dmethod.rst57 .. c:var:: PyTypeObject PyMethod_Type
67 Return true if *o* is a method object (has type :c:data:`PyMethod_Type`). The
/third_party/python/Objects/
Dclassobject.c39 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
Dobject.c1841 INIT_TYPE(PyMethod_Type); in _PyTypes_Init()
/third_party/python/Tools/c-analyzer/
DTODO686 Objects/classobject.c:PyMethod_Type PyTypeObject PyMethod_Type
/third_party/python/Doc/howto/
Ddescriptor.rst1115 "Emulate PyMethod_Type in Objects/classobject.c"
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv1595 Objects/classobject.c - PyMethod_Type -