Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dtypeslots.inc80 {offsetof(PyAsyncMethods, am_anext), offsetof(PyTypeObject, tp_as_async)},
Dabstract.c2859 tp->tp_as_async->am_anext != NULL && in PyAIter_Check()
2860 tp->tp_as_async->am_anext != &_PyObject_NextNotImplemented); in PyAIter_Check()
Dtypeobject.c5828 COPYASYNC(am_anext); in inherit_slots()
7964 AMSLOT("__anext__", am_anext, slot_am_anext, wrap_unaryfunc,
/third_party/python/Include/cpython/
Dobject.h176 unaryfunc am_anext; member
/third_party/python/Python/
Dbltinmodule.c1637 if (t->tp_as_async == NULL || t->tp_as_async->am_anext == NULL) { in builtin_anext_impl()
1644 awaitable = (*t->tp_as_async->am_anext)(aiterator); in builtin_anext_impl()
Dceval.c2474 Py_TYPE(iter)->tp_as_async->am_anext == NULL) { in _PyEval_EvalFrameDefault()
2497 awaitable = type->tp_as_async->am_anext(aiter); in _PyEval_EvalFrameDefault()
2503 getter = type->tp_as_async->am_anext; in _PyEval_EvalFrameDefault()
/third_party/python/Doc/c-api/
Dtypeobj.rst200 …| :c:member:`~PyAsyncMethods.am_anext` | :c:type:`unaryfunc` | __…
2421 unaryfunc am_anext;
2447 .. c:member:: unaryfunc PyAsyncMethods.am_anext
2451 PyObject *am_anext(PyObject *self);