Searched refs:PyGen_CheckExact (Results 1 – 9 of 9) sorted by relevance
32 #define PyGen_CheckExact(op) (Py_TYPE(op) == &PyGen_Type) macro
28 .. c:function:: int PyGen_CheckExact(ob)
39 #define PyGen_CheckExact(op) (Py_TYPE(op) == &PyGen_Type) macro
28 .. c:function:: int PyGen_CheckExact(PyObject *ob)
308 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()
512 else if (PyGen_CheckExact(op)) in has_finalizer()
923 PyGen_CheckExact:int:::924 PyGen_CheckExact:PyObject*:ob:0:
1786 if (PyGen_CheckExact(receiver) || PyCoro_CheckExact(receiver)) { in _PyEval_EvalFrameDefault()2793 else if (!PyGen_CheckExact(iterable)) { in _PyEval_EvalFrameDefault()
2557 if (PyGen_CheckExact(coro) || PyCoro_CheckExact(coro)) { in task_step_impl()