Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dtypeslots.inc78 {offsetof(PyAsyncMethods, am_await), offsetof(PyTypeObject, tp_as_async)},
Diterobject.c329 unaryfunc getter = Py_TYPE(awaitable)->tp_as_async->am_await; in anextawaitable_getiter()
Dgenobject.c915 getter = ot->tp_as_async->am_await; in _PyCoro_GetAwaitableIter()
Dtypeobject.c5826 COPYASYNC(am_await); in inherit_slots()
7960 AMSLOT("__await__", am_await, slot_am_await, wrap_unaryfunc,
/third_party/python/Include/cpython/
Dobject.h174 unaryfunc am_await; member
/third_party/python/Doc/c-api/
Dtypeobj.rst196 …| :c:member:`~PyAsyncMethods.am_await` | :c:type:`unaryfunc` | __…
2419 unaryfunc am_await;
2425 .. c:member:: unaryfunc PyAsyncMethods.am_await
2429 PyObject *am_await(PyObject *self);
/third_party/python/Python/
Dceval.c6297 if (type->tp_as_async == NULL || type->tp_as_async->am_await == NULL) { in format_awaitable_error()