Searched refs:_PyGen_Send (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Include/ |
D | genobject.h | 47 PyAPI_FUNC(PyObject *) _PyGen_Send(PyGenObject *, PyObject *);
|
/external/python/cpython3/Objects/ |
D | genobject.c | 289 _PyGen_Send(PyGenObject *gen, PyObject *arg) in _PyGen_Send() function 717 {"send",(PyCFunction)_PyGen_Send, METH_O, send_doc}, 968 {"send",(PyCFunction)_PyGen_Send, METH_O, coro_send_doc},
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 2558 result = _PyGen_Send((PyGenObject*)coro, Py_None); in task_step_impl()
|
D | _testcapimodule.c | 4349 return _PyGen_Send(gen, Py_None); in raise_SIGINT_then_send_None()
|
/external/python/cpython3/Python/ |
D | ceval.c | 1787 retval = _PyGen_Send((PyGenObject *)receiver, v); in _PyEval_EvalFrameDefault()
|