Home
last modified time | relevance | path

Searched refs:PyCMethod_Type (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Include/cpython/
Dmethodobject.h5 PyAPI_DATA(PyTypeObject) PyCMethod_Type;
7 #define PyCMethod_CheckExact(op) Py_IS_TYPE(op, &PyCMethod_Type)
8 #define PyCMethod_Check(op) PyObject_TypeCheck(op, &PyCMethod_Type)
/external/python/cpython3/Objects/
Dmethodobject.c87 PyCMethodObject *om = PyObject_GC_New(PyCMethodObject, &PyCMethod_Type); in PyCMethod_New()
369 PyTypeObject PyCMethod_Type = { variable
Dobject.c1792 INIT_TYPE(&PyCMethod_Type, "builtin method"); in _PyTypes_Init()