Home
last modified time | relevance | path

Searched refs:_PyGen_Send (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Include/
Dgenobject.h47 PyAPI_FUNC(PyObject *) _PyGen_Send(PyGenObject *, PyObject *);
/external/python/cpython3/Objects/
Dgenobject.c289 _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.c2558 result = _PyGen_Send((PyGenObject*)coro, Py_None); in task_step_impl()
D_testcapimodule.c4349 return _PyGen_Send(gen, Py_None); in raise_SIGINT_then_send_None()
/external/python/cpython3/Python/
Dceval.c1787 retval = _PyGen_Send((PyGenObject *)receiver, v); in _PyEval_EvalFrameDefault()