Searched refs:PyGen_CheckExact (Results 1 – 13 of 13) sorted by relevance
32 #define PyGen_CheckExact(op) (Py_TYPE(op) == &PyGen_Type) macro
41 #define PyGen_CheckExact(op) Py_IS_TYPE(op, &PyGen_Type) macro
28 .. c:function:: int PyGen_CheckExact(ob)
29 .. c:function:: int PyGen_CheckExact(PyObject *ob)
326 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in gen_close_iter()445 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in _gen_throw()593 assert(PyGen_CheckExact(gen) || PyCoro_CheckExact(gen)); in gen_iternext()1024 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:
2036 if (PyGen_CheckExact(iter)) { in _PySpecialization_ClassifyIterator()
4320 else if (!PyGen_CheckExact(iterable)) {