Home
last modified time | relevance | path

Searched refs:PyCFunction_New (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Objects/
Dmethodobject.c373 return PyCFunction_New(ml, self); in Py_FindMethodInChain()
420 #undef PyCFunction_New
421 PyAPI_FUNC(PyObject *) PyCFunction_New(PyMethodDef *, PyObject *);
424 PyCFunction_New(PyMethodDef *ml, PyObject *self) in PyCFunction_New() function
Ddescrobject.c115 return PyCFunction_New(descr->d_method, type); in classmethod_get()
125 return PyCFunction_New(descr->d_method, obj); in method_get()
239 func = PyCFunction_New(descr->d_method, self); in methoddescr_call()
291 func = PyCFunction_New(descr->d_method, self); in classmethoddescr_call()
Dtypeobject.c3683 PyObject *cfunc = PyCFunction_New(meth, NULL);
4941 func = PyCFunction_New(tp_new_methoddef, (PyObject *)type);
/external/python/cpython2/Include/
Dmethodobject.h48 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) macro
/external/python/cpython2/PC/os2vacpp/
Dpython.def93 PyCFunction_New
/external/python/cpython2/PC/bdist_wininst/
Dinstall.c657 DECLPROC(hPython, PyObject *, PyCFunction_New, (PyMethodDef *, PyObject *)); in prepare_script_environment()
663 !PyObject_SetAttrString || !PyCFunction_New) in prepare_script_environment()
675 PyCFunction_New(&meth[i], NULL)); in prepare_script_environment()
705 DECLPROC(hPython, PyObject *, PyCFunction_New, in do_run_installscript()
717 if (!PyCFunction_New || !PyArg_ParseTuple || !PyErr_Format) in do_run_installscript()
/external/python/cpython2/Modules/
Dthreadmodule.c371 self->wr_callback = PyCFunction_New(&wr_callback_def, wr); in local_new()
/external/python/cpython2/Python/
Dcodecs.c1014 PyObject *func = PyCFunction_New(&methods[i].def, NULL); in _PyCodecRegistry_Init()
/external/python/cpython2/PC/os2emx/
Dpython27.def432 "PyCFunction_New"
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c2074 func = PyCFunction_New(ml, NULL); in PyCSimpleType_new()
5442 PyObject *func = PyCFunction_New(methods, NULL); in create_comerror()