Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dmethodobject.h49 #define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL)
50 PyAPI_FUNC(PyObject *) PyCMethod_New(PyMethodDef *, PyObject *,
/external/python/cpython3/Objects/
Dmethodobject.c40 return PyCMethod_New(ml, self, module, NULL); in PyCFunction_NewEx()
44 PyCMethod_New(PyMethodDef *ml, PyObject *self, PyObject *module, PyTypeObject *cls) in PyCMethod_New() function
Ddescrobject.c134 return PyCMethod_New(descr->d_method, type, NULL, cls); in classmethod_get()
146 return PyCMethod_New(descr->d_method, obj, NULL, descr->d_common.d_type); in method_get()