Searched refs:PyCMethod_New (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Include/ |
D | methodobject.h | 49 #define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL) 50 PyAPI_FUNC(PyObject *) PyCMethod_New(PyMethodDef *, PyObject *,
|
/external/python/cpython3/Objects/ |
D | methodobject.c | 40 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
|
D | descrobject.c | 134 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()
|