Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dgenobject.c151 if (PyCoro_CheckExact(gen)) { in gen_send_ex2()
163 if (PyCoro_CheckExact(gen)) { in gen_send_ex2()
173 if (PyCoro_CheckExact(gen) && !closing) { in gen_send_ex2()
239 if (PyCoro_CheckExact(gen)) { in gen_send_ex2()
319 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in gen_close_iter()
387 if (PyCoro_CheckExact(gen)) { in gen_close()
435 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in _gen_throw()
571 assert(PyGen_CheckExact(gen) || PyCoro_CheckExact(gen)); in gen_iternext()
907 if (PyCoro_CheckExact(o) || gen_is_coroutine(o)) { in _PyCoro_GetAwaitableIter()
920 if (PyCoro_CheckExact(res) || gen_is_coroutine(res)) { in _PyCoro_GetAwaitableIter()
Diterobject.c328 assert(PyCoro_CheckExact(awaitable)); in anextawaitable_getiter()
/third_party/python/Doc/c-api/
Dcoro.rst24 .. c:function:: int PyCoro_CheckExact(PyObject *ob)
/third_party/python/Include/
Dgenobject.h57 #define PyCoro_CheckExact(op) Py_IS_TYPE(op, &PyCoro_Type) macro
/third_party/python/Doc/data/
Drefcounts.dat962 PyCoro_CheckExact:int:::
963 PyCoro_CheckExact:PyObject*:ob:0:
/third_party/python/Modules/
D_asynciomodule.c168 if (PyCoro_CheckExact(coro)) { in is_coroutine()
/third_party/python/Python/
Dceval.c2557 if (iter != NULL && PyCoro_CheckExact(iter)) { in _PyEval_EvalFrameDefault()
3972 if (PyCoro_CheckExact(iterable)) { in _PyEval_EvalFrameDefault()