Home
last modified time | relevance | path

Searched refs:PyCFunctionWithKeywords (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/
Dmethodobject.h21 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, typedef
/third_party/python/Doc/c-api/
Dstructures.rst155 .. c:type:: PyCFunctionWithKeywords
161 PyObject *PyCFunctionWithKeywords(PyObject *self,
247 Methods with these flags must be of type :c:type:`PyCFunctionWithKeywords`.
/third_party/python/Objects/
Dmethodobject.c539 result = (*(PyCFunctionWithKeywords)(void(*)(void))meth)(self, args, kwargs); in cfunction_call()
Ddescrobject.c341 PyCFunctionWithKeywords meth = (PyCFunctionWithKeywords) in method_vectorcall_VARARGS_KEYWORDS()