Searched refs:PyCFunctionWithKeywords (Results 1 – 6 of 6) sorted by relevance
| /external/python/cpython2/Include/ |
| D | methodobject.h | 19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, typedef
|
| /external/python/cpython3/Include/ |
| D | methodobject.h | 20 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, typedef
|
| /external/python/cpython3/Objects/ |
| D | call.c | 515 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/ |
| D | methodobject.c | 85 return (*(PyCFunctionWithKeywords)meth)(self, arg, kw); in PyCFunction_Call()
|
| /external/python/cpython3/Doc/c-api/ |
| D | structures.rst | 115 .. c:type:: PyCFunctionWithKeywords 169 Methods with these flags must be of type :c:type:`PyCFunctionWithKeywords`.
|
| /external/python/cpython2/Doc/c-api/ |
| D | structures.rst | 178 Methods with these flags must be of type :c:type:`PyCFunctionWithKeywords`.
|