Home
last modified time | relevance | path

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

/third_party/python/Include/
Dgenobject.h38 #define PyGen_CheckExact(op) Py_IS_TYPE(op, &PyGen_Type) macro
/third_party/python/Doc/c-api/
Dgen.rst29 .. c:function:: int PyGen_CheckExact(PyObject *ob)
/third_party/python/Objects/
Dgenobject.c319 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in gen_close_iter()
435 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in _gen_throw()
571 assert(PyGen_CheckExact(gen) || PyCoro_CheckExact(gen)); in gen_iternext()
884 if (PyGen_CheckExact(o)) { in gen_is_coroutine()
/third_party/python/Doc/data/
Drefcounts.dat951 PyGen_CheckExact:int:::
952 PyGen_CheckExact:PyObject*:ob:0:
/third_party/python/Python/
Dceval.c3985 else if (!PyGen_CheckExact(iterable)) { in _PyEval_EvalFrameDefault()