Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dtypeslots.inc78 offsetof(PyHeapTypeObject, as_async.am_await),
Dgenobject.c881 getter = ot->tp_as_async->am_await; in _PyCoro_GetAwaitableIter()
Dtypeobject.c5011 COPYASYNC(am_await); in inherit_slots()
6845 AMSLOT("__await__", am_await, slot_am_await, wrap_unaryfunc,
/external/python/cpython3/Include/
Dobject.h308 unaryfunc am_await; member
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst1384 unaryfunc am_await;
1389 .. c:member:: unaryfunc PyAsyncMethods.am_await
1393 PyObject *am_await(PyObject *self)
/external/python/cpython3/Python/
Dceval.c4990 if (type->tp_as_async == NULL || type->tp_as_async->am_await == NULL) { in format_awaitable_error()