Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dmethodobject.h19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, typedef
/external/python/cpython3/Include/
Dmethodobject.h20 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, typedef
/external/python/cpython3/Objects/
Dcall.c515 result = (*(PyCFunctionWithKeywords)meth) (self, argstuple, kwargs); in _PyMethodDef_RawFastCallDict()
690 result = (*(PyCFunctionWithKeywords)meth) (self, argtuple, kwdict); in _PyMethodDef_RawFastCallKeywords()
753 result = (*(PyCFunctionWithKeywords)meth)(self, args, kwargs); in cfunction_call_varargs()
/external/python/cpython2/Objects/
Dmethodobject.c85 return (*(PyCFunctionWithKeywords)meth)(self, arg, kw); in PyCFunction_Call()
/external/python/cpython3/Doc/c-api/
Dstructures.rst115 .. c:type:: PyCFunctionWithKeywords
169 Methods with these flags must be of type :c:type:`PyCFunctionWithKeywords`.
/external/python/cpython2/Doc/c-api/
Dstructures.rst178 Methods with these flags must be of type :c:type:`PyCFunctionWithKeywords`.