Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dgenobject.c1211 } PyAsyncGenAThrow; typedef
1778 async_gen_athrow_dealloc(PyAsyncGenAThrow *o) in async_gen_athrow_dealloc()
1788 async_gen_athrow_traverse(PyAsyncGenAThrow *o, visitproc visit, void *arg) in async_gen_athrow_traverse()
1797 async_gen_athrow_send(PyAsyncGenAThrow *o, PyObject *arg) in async_gen_athrow_send()
1904 async_gen_athrow_throw(PyAsyncGenAThrow *o, PyObject *args) in async_gen_athrow_throw()
1934 async_gen_athrow_iternext(PyAsyncGenAThrow *o) in async_gen_athrow_iternext()
1941 async_gen_athrow_close(PyAsyncGenAThrow *o, PyObject *args) in async_gen_athrow_close()
1966 sizeof(PyAsyncGenAThrow), /* tp_basicsize */
2009 PyAsyncGenAThrow *o; in async_gen_athrow_new()
2010 o = PyObject_GC_New(PyAsyncGenAThrow, &_PyAsyncGenAThrow_Type); in async_gen_athrow_new()