Searched refs:am_await (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Objects/ |
H A D | iterobject.c | 338 unaryfunc getter = Py_TYPE(awaitable)->tp_as_async->am_await; in anextawaitable_getiter() 458 PyObject_SelfIter, /* am_await */
|
H A D | genobject.c | 831 0, /* am_await */ 1036 * - `type(o)->tp_as_async->am_await(o)` 1055 getter = ot->tp_as_async->am_await; in _PyCoro_GetAwaitableIter() 1179 (unaryfunc)coro_await, /* am_await */ 1569 0, /* am_await */ 1841 PyObject_SelfIter, /* am_await */ 2261 PyObject_SelfIter, /* am_await */
|
H A D | typeobject.c | 5922 COPYASYNC(am_await); in inherit_slots() 8093 AMSLOT("__await__", am_await, slot_am_await, wrap_unaryfunc,
|
/third_party/python/Include/cpython/ |
H A D | object.h | 131 unaryfunc am_await; member
|
/third_party/python/Python/ |
H A D | ceval.c | 7796 if (type->tp_as_async == NULL || type->tp_as_async->am_await == NULL) {
|
Completed in 26 milliseconds