Home
last modified time | relevance | path

Searched refs:PyCFunctionFastWithKeywords (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Include/
Dmethodobject.h23 typedef PyObject *(*PyCFunctionFastWithKeywords) (PyObject *, typedef
34 typedef PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords;
/external/python/cpython3/Objects/
Dmethodobject.c436 PyCFunctionFastWithKeywords meth = (PyCFunctionFastWithKeywords) in cfunction_vectorcall_FASTCALL_KEYWORDS()
Ddescrobject.c415 PyCFunctionFastWithKeywords meth = (PyCFunctionFastWithKeywords) in method_vectorcall_FASTCALL_KEYWORDS()
/external/python/cpython3/Doc/c-api/
Dstructures.rst200 .. c:type:: PyCFunctionFastWithKeywords
206 PyObject *PyCFunctionFastWithKeywords(PyObject *self,
309 with methods of type :c:type:`PyCFunctionFastWithKeywords`.
/external/python/cpython3/Python/
Dexecutor_cases.c.h3650 PyCFunctionFastWithKeywords cfunc =
3651 (PyCFunctionFastWithKeywords)(void(*)(void))
3838 PyCFunctionFastWithKeywords cfunc =
3839 (PyCFunctionFastWithKeywords)(void(*)(void))meth->ml_meth;
Dbytecodes.c3557 PyCFunctionFastWithKeywords cfunc = in dummy_func()
3558 (PyCFunctionFastWithKeywords)(void(*)(void)) in dummy_func()
3698 PyCFunctionFastWithKeywords cfunc = in dummy_func()
3699 (PyCFunctionFastWithKeywords)(void(*)(void))meth->ml_meth; in dummy_func()
Dgenerated_cases.c.h1214 PyCFunctionFastWithKeywords cfunc = in TARGET()
1215 (PyCFunctionFastWithKeywords)(void(*)(void)) in TARGET()
1688 PyCFunctionFastWithKeywords cfunc = in TARGET()
1689 (PyCFunctionFastWithKeywords)(void(*)(void))meth->ml_meth; in TARGET()
/external/python/cpython3/Doc/data/
Dstable_abi.dat46 type,PyCFunctionFastWithKeywords,3.13,,
/external/python/cpython3/Misc/NEWS.d/
D3.13.0a5.rst1153 ``PyCFunctionFastWithKeywords`` (Python 3.13a4). Patch by Victor Stinner.
D3.13.0a4.rst1389 Add ``PyCFunctionFast`` and ``PyCFunctionFastWithKeywords`` typedefs
/external/python/cpython3/Misc/
Dstable_abi.toml2489 [typedef.PyCFunctionFastWithKeywords]