Home
last modified time | relevance | path

Searched refs:PyCFunction_NewEx (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Include/
Dmethodobject.h48 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
49 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
/external/python/cpython3/Include/
Dmethodobject.h65 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
66 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
/external/python/cpython3/Objects/
Dmethodobject.c24 return PyCFunction_NewEx(ml, self, NULL); in PyCFunction_New()
28 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) in PyCFunction_NewEx() function
Ddescrobject.c125 return PyCFunction_NewEx(descr->d_method, type, NULL); in classmethod_get()
135 return PyCFunction_NewEx(descr->d_method, obj, NULL); in method_get()
Dmoduleobject.c159 func = PyCFunction_NewEx(fdef, (PyObject*)module, name); in _add_methods_to_object()
Dtypeobject.c4793 PyObject *cfunc = PyCFunction_NewEx(meth, (PyObject*)type, NULL); in add_methods()
5936 func = PyCFunction_NewEx(tp_new_methoddef, (PyObject *)type, NULL); in add_tp_new_wrapper()
/external/python/cpython2/Objects/
Dmethodobject.c17 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) in PyCFunction_NewEx() function
426 return PyCFunction_NewEx(ml, self, NULL); in PyCFunction_New()
/external/python/cpython2/Python/
Dmodsupport.c81 v = PyCFunction_NewEx(ml, passthrough, n); in Py_InitModule4()
/external/python/cpython3/Modules/
D_abc.c150 destroy_cb = PyCFunction_NewEx(&_destroy_def, wr, NULL); in _add_to_weak_set()
D_threadmodule.c741 self->wr_callback = PyCFunction_NewEx(&wr_callback_def, wr, NULL); in local_new()
D_testcapimodule.c3260 return PyCFunction_NewEx(&ml, self, NULL); in create_cfunction()
/external/python/cpython3/PC/
Dpython3.def43 PyCFunction_NewEx=python37.PyCFunction_NewEx
/external/python/cpython2/PC/os2emx/
Dpython27.def430 "PyCFunction_NewEx"
/external/python/cpython3/Python/
Dcodecs.c1512 PyObject *func = PyCFunction_NewEx(&methods[i].def, NULL, NULL); in _PyCodecRegistry_Init()