Home
last modified time | relevance | path

Searched refs:PyGen_CheckExact (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dgenobject.h32 #define PyGen_CheckExact(op) (Py_TYPE(op) == &PyGen_Type) macro
/external/python/cpython2/Doc/c-api/
Dgen.rst28 .. c:function:: int PyGen_CheckExact(ob)
/external/python/cpython3/Include/
Dgenobject.h39 #define PyGen_CheckExact(op) (Py_TYPE(op) == &PyGen_Type) macro
/external/python/cpython3/Doc/c-api/
Dgen.rst28 .. c:function:: int PyGen_CheckExact(PyObject *ob)
/external/python/cpython3/Objects/
Dgenobject.c308 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in gen_close_iter()
421 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in _gen_throw()
850 if (PyGen_CheckExact(o)) { in gen_is_coroutine()
/external/python/cpython2/Modules/
Dgcmodule.c512 else if (PyGen_CheckExact(op)) in has_finalizer()
/external/python/cpython3/Doc/data/
Drefcounts.dat923 PyGen_CheckExact:int:::
924 PyGen_CheckExact:PyObject*:ob:0:
/external/python/cpython3/Python/
Dceval.c1786 if (PyGen_CheckExact(receiver) || PyCoro_CheckExact(receiver)) { in _PyEval_EvalFrameDefault()
2793 else if (!PyGen_CheckExact(iterable)) { in _PyEval_EvalFrameDefault()
/external/python/cpython3/Modules/
D_asynciomodule.c2557 if (PyGen_CheckExact(coro) || PyCoro_CheckExact(coro)) { in task_step_impl()