Searched refs:PyCFunction_NewEx (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Include/ |
D | methodobject.h | 48 #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/ |
D | methodobject.c | 14 #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
|
D | moduleobject.c | 159 func = PyCFunction_NewEx(fdef, (PyObject*)module, name); in _add_methods_to_object()
|
D | descrobject.c | 151 return PyCFunction_NewEx(descr->d_method, obj, NULL); in method_get()
|
D | typeobject.c | 5570 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.c | 190 destroy_cb = PyCFunction_NewEx(&_destroy_def, wr, NULL); in _add_to_weak_set()
|
D | _threadmodule.c | 820 self->wr_callback = PyCFunction_NewEx(&wr_callback_def, wr, NULL); in local_new()
|
D | _testcapimodule.c | 3804 return PyCFunction_NewEx(&ml, self, NULL); in create_cfunction()
|
/third_party/python/PC/ |
D | python3dll.c | 138 EXPORT_FUNC(PyCFunction_NewEx)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 42 function,PyCFunction_NewEx,3.2,
|
/third_party/python/Python/ |
D | codecs.c | 1517 PyObject *func = PyCFunction_NewEx(&methods[i].def, NULL, NULL); in _PyCodecRegistry_Init()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 366 function PyCFunction_NewEx
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a5.rst | 1227 :c:func:`PyDescr_NewMethod` and :c:func:`PyCFunction_NewEx` now include the
|