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.c866 getter = ot->tp_as_async->am_await; in _PyCoro_GetAwaitableIter()
Dtypeobject.c5246 COPYASYNC(am_await); in inherit_slots()
7177 AMSLOT("__await__", am_await, slot_am_await, wrap_unaryfunc,
/external/python/cpython3/Include/cpython/
Dobject.h179 unaryfunc am_await; member
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst196 …| :c:member:`~PyAsyncMethods.am_await` | :c:type:`unaryfunc` | __…
2303 unaryfunc am_await;
2308 .. c:member:: unaryfunc PyAsyncMethods.am_await
2312 PyObject *am_await(PyObject *self);
/external/python/cpython3/Python/
Dceval.c5484 if (type->tp_as_async == NULL || type->tp_as_async->am_await == NULL) { in format_awaitable_error()