Home
last modified time | relevance | path

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

/third_party/python/Include/
Dmethodobject.h47 PyAPI_FUNC(PyObject *) PyCFunction_New(PyMethodDef *, PyObject *);
48 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) macro
/third_party/python/Objects/
Dmethodobject.c12 #undef PyCFunction_New
32 PyCFunction_New(PyMethodDef *ml, PyObject *self) in PyCFunction_New() function
/third_party/python/Misc/NEWS.d/
D3.10.0a6.rst505 The :c:func:`PyCFunction_New` function is now exported in the ABI when
D3.5.0a4.rst89 PyCFunction_New function is exposed by python DLL again.
/third_party/python/Doc/data/
Dstable_abi.dat41 function,PyCFunction_New,3.4,
/third_party/python/PC/
Dpython3dll.c137 EXPORT_FUNC(PyCFunction_New)
/third_party/python/Modules/
D_asynciomodule.c2764 wrapper = PyCFunction_New(&TaskWakeupDef, (PyObject *)task); in task_step_impl()
2845 wrapper = PyCFunction_New(&TaskWakeupDef, (PyObject *)task); in task_step_impl()
/third_party/python/Misc/
Dstable_abi.txt1772 function PyCFunction_New
DHISTORY246 - Issue #21354: PyCFunction_New function is exposed by python DLL again.