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_IS_TYPE(op, &PyGen_Type) macro
28 .. c:function:: int PyGen_CheckExact(PyObject *ob)
302 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in gen_close_iter()415 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in _gen_throw()835 if (PyGen_CheckExact(o)) { in gen_is_coroutine()
512 else if (PyGen_CheckExact(op)) in has_finalizer()
951 PyGen_CheckExact:int:::952 PyGen_CheckExact:PyObject*:ob:0:
2682 if (PyGen_CheckExact(coro) || PyCoro_CheckExact(coro)) { in task_step_impl()
2199 if (PyGen_CheckExact(receiver) || PyCoro_CheckExact(receiver)) { in _PyEval_EvalFrameDefault()3290 else if (!PyGen_CheckExact(iterable)) { in _PyEval_EvalFrameDefault()