Home
last modified time | relevance | path

Searched refs:PyCFunction_New (Results 1 – 16 of 16) 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.c3746 PyObject *cfunc = PyCFunction_New(meth, NULL);
5004 func = PyCFunction_New(tp_new_methoddef, (PyObject *)type);
/external/python/cpython3/Objects/
Dmethodobject.c19 #undef PyCFunction_New
22 PyCFunction_New(PyMethodDef *ml, PyObject *self) in PyCFunction_New() function
/external/python/cpython2/Include/
Dmethodobject.h48 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) macro
/external/python/cpython3/Include/
Dmethodobject.h65 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) macro
/external/python/cpython3/PC/bdist_wininst/
Dinstall.c687 DECLPROC(hPython, PyObject *, PyCFunction_New, (PyMethodDef *, PyObject *)); in prepare_script_environment()
693 !PyObject_SetAttrString || !PyCFunction_New) in prepare_script_environment()
705 PyCFunction_New(&meth[i], NULL)); in prepare_script_environment()
736 DECLPROC(hPython, PyObject *, PyCFunction_New, in do_run_installscript()
748 if (!PyCFunction_New || !PyArg_ParseTuple || !PyErr_Format) in do_run_installscript()
/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/PC/os2vacpp/
Dpython.def93 PyCFunction_New
/external/python/cpython3/PC/
Dpython3.def42 PyCFunction_New=python37.PyCFunction_New
/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/cpython3/Misc/NEWS.d/
D3.5.0a4.rst89 PyCFunction_New function is exposed by python DLL again.
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c2154 func = PyCFunction_New(ml, NULL); in PyCSimpleType_new()
5537 PyObject *func = PyCFunction_New(methods, NULL); in create_comerror()
/external/python/cpython3/Misc/
DHISTORY246 - Issue #21354: PyCFunction_New function is exposed by python DLL again.