Home
last modified time | relevance | path

Searched refs:PyGen_Check (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Include/cpython/
Dgenobject.h38 #define PyGen_Check(op) PyObject_TypeCheck((op), &PyGen_Type) macro
/external/python/cpython3/Doc/c-api/
Dgen.rst23 .. c:function:: int PyGen_Check(PyObject *ob)
/external/python/cpython3/Doc/data/
Drefcounts.dat1004 PyGen_Check:int:::
1005 PyGen_Check:PyObject*:ob:0:
/external/python/cpython3/Objects/
Dgenobject.c39 assert(PyGen_Check(gen)); in PyGen_GetCode()
/external/python/cpython3/Python/
Dbytecodes.c294 if (PyGen_Check(receiver)) { in dummy_func()
307 if (PyGen_Check(receiver) || PyCoro_CheckExact(receiver)) { in dummy_func()
Dgenerated_cases.c.h3264 if (PyGen_Check(receiver)) { in TARGET()
3283 if (PyGen_Check(receiver) || PyCoro_CheckExact(receiver)) { in TARGET()
/external/python/cpython3/Modules/
D_testcapimodule.c2664 if (!PyGen_Check(gen)) { in gen_get_code()