Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dmethodobject.h19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, typedef
/external/python/cpython3/Include/
Dmethodobject.h21 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, typedef
/external/python/cpython3/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`.
/external/python/cpython2/Objects/
Dmethodobject.c85 return (*(PyCFunctionWithKeywords)meth)(self, arg, kw); in PyCFunction_Call()
/external/python/cpython3/Objects/
Dmethodobject.c539 result = (*(PyCFunctionWithKeywords)(void(*)(void))meth)(self, args, kwargs); in cfunction_call()
Ddescrobject.c341 PyCFunctionWithKeywords meth = (PyCFunctionWithKeywords) in method_vectorcall_VARARGS_KEYWORDS()
/external/python/cpython2/Doc/c-api/
Dstructures.rst178 Methods with these flags must be of type :c:type:`PyCFunctionWithKeywords`.