Searched refs:gen_throw (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | genobject.c | 218 gen_throw(PyGenObject *gen, PyObject *args) in gen_throw() function 326 {"throw",(PyCFunction)gen_throw, METH_VARARGS, throw_doc},
|
/external/python/cpython3/Objects/ |
D | genobject.c | 525 gen_throw(PyGenObject *gen, PyObject *args) in gen_throw() function 718 {"throw",(PyCFunction)gen_throw, METH_VARARGS, throw_doc}, 969 {"throw",(PyCFunction)gen_throw, METH_VARARGS, coro_throw_doc}, 1056 return gen_throw((PyGenObject *)cw->cw_coroutine, args); in coro_wrapper_throw() 1575 result = gen_throw((PyGenObject*)o->ags_gen, args); in async_gen_asend_throw() 1918 retval = gen_throw((PyGenObject*)o->agt_gen, args); in async_gen_athrow_throw()
|