Searched refs:PyCFunction_New (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython2/Objects/ |
D | methodobject.c | 373 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
|
D | descrobject.c | 115 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()
|
D | typeobject.c | 3683 PyObject *cfunc = PyCFunction_New(meth, NULL); 4941 func = PyCFunction_New(tp_new_methoddef, (PyObject *)type);
|
/external/python/cpython2/Include/ |
D | methodobject.h | 48 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) macro
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 93 PyCFunction_New
|
/external/python/cpython2/PC/bdist_wininst/ |
D | install.c | 657 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/ |
D | threadmodule.c | 371 self->wr_callback = PyCFunction_New(&wr_callback_def, wr); in local_new()
|
/external/python/cpython2/Python/ |
D | codecs.c | 1014 PyObject *func = PyCFunction_New(&methods[i].def, NULL); in _PyCodecRegistry_Init()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 432 "PyCFunction_New"
|
/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes.c | 2074 func = PyCFunction_New(ml, NULL); in PyCSimpleType_new() 5442 PyObject *func = PyCFunction_New(methods, NULL); in create_comerror()
|