Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dgenobject.c142 Py_CLEAR(((PyCoroObject *)gen)->cr_origin); in gen_dealloc()
844 PyCoroObject *cw_coroutine;
910 coro_repr(PyCoroObject *coro) in coro_repr()
917 coro_await(PyCoroObject *coro) in coro_await()
930 coro_get_cr_await(PyCoroObject *coro, void *Py_UNUSED(ignored)) in coro_get_cr_await()
949 {"cr_frame", T_OBJECT, offsetof(PyCoroObject, cr_frame), READONLY},
950 {"cr_running", T_BOOL, offsetof(PyCoroObject, cr_running), READONLY},
951 {"cr_code", T_OBJECT, offsetof(PyCoroObject, cr_code), READONLY},
952 {"cr_origin", T_OBJECT, offsetof(PyCoroObject, cr_origin), READONLY},
983 sizeof(PyCoroObject), /* tp_basicsize */
[all …]
/external/python/cpython3/Doc/c-api/
Dcoro.rst14 .. c:type:: PyCoroObject
/external/python/cpython3/Include/
Dgenobject.h55 } PyCoroObject; typedef
/external/python/cpython3/Python/
D_warnings.c1208 ((PyCoroObject *)coro)->cr_qualname) < 0) in _PyErr_WarnUnawaitedCoroutine()