Searched refs:PySendResult (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Doc/c-api/ |
D | iter.rst | 57 .. c:type:: PySendResult 64 .. c:function:: PySendResult PyIter_Send(PyObject *iter, PyObject *arg, PyObject **presult)
|
D | typeobj.rst | 2460 PySendResult am_send(PyObject *self, PyObject *arg, PyObject **result); 2562 .. c:type:: PySendResult (*sendfunc)(PyObject *, PyObject *, PyObject **)
|
/third_party/python/Include/cpython/ |
D | object.h | 171 typedef PySendResult (*sendfunc)(PyObject *iter, PyObject *value, PyObject **result);
|
/third_party/python/Include/ |
D | abstract.h | 408 PyAPI_FUNC(PySendResult) PyIter_Send(PyObject *, PyObject *, PyObject **);
|
D | object.h | 639 } PySendResult; typedef
|
/third_party/python/Objects/ |
D | genobject.c | 139 static PySendResult 269 static PySendResult
|
D | abstract.c | 2886 PySendResult 2893 PySendResult res = Py_TYPE(iter)->tp_as_async->am_send(iter, arg, result); in PyIter_Send()
|
/third_party/python/Modules/ |
D | _asynciomodule.c | 1608 static PySendResult
|
/third_party/python/Python/ |
D | ceval.c | 2584 PySendResult gen_status; in _PyEval_EvalFrameDefault()
|