Home
last modified time | relevance | path

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

/third_party/python/Include/
Dmethodobject.h48 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
51 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
55 #define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL) macro
/third_party/python/Objects/
Dmethodobject.c14 #undef PyCFunction_NewEx
34 return PyCFunction_NewEx(ml, self, NULL); in PyCFunction_New()
38 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) in PyCFunction_NewEx() function
Dmoduleobject.c159 func = PyCFunction_NewEx(fdef, (PyObject*)module, name); in _add_methods_to_object()
Ddescrobject.c151 return PyCFunction_NewEx(descr->d_method, obj, NULL); in method_get()
Dtypeobject.c5570 PyObject *cfunc = PyCFunction_NewEx(meth, (PyObject*)type, NULL); in type_add_method()
7033 PyObject *func = PyCFunction_NewEx(tp_new_methoddef, (PyObject *)type, NULL); in add_tp_new_wrapper()
/third_party/python/Modules/
D_abc.c190 destroy_cb = PyCFunction_NewEx(&_destroy_def, wr, NULL); in _add_to_weak_set()
D_threadmodule.c820 self->wr_callback = PyCFunction_NewEx(&wr_callback_def, wr, NULL); in local_new()
D_testcapimodule.c3804 return PyCFunction_NewEx(&ml, self, NULL); in create_cfunction()
/third_party/python/PC/
Dpython3dll.c138 EXPORT_FUNC(PyCFunction_NewEx)
/third_party/python/Doc/data/
Dstable_abi.dat42 function,PyCFunction_NewEx,3.2,
/third_party/python/Python/
Dcodecs.c1517 PyObject *func = PyCFunction_NewEx(&methods[i].def, NULL, NULL); in _PyCodecRegistry_Init()
/third_party/python/Misc/
Dstable_abi.txt366 function PyCFunction_NewEx
/third_party/python/Misc/NEWS.d/
D3.9.0a5.rst1227 :c:func:`PyDescr_NewMethod` and :c:func:`PyCFunction_NewEx` now include the