Home
last modified time | relevance | path

Searched refs:PyGen_Type (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Include/
Dgenobject.h35 PyAPI_DATA(PyTypeObject) PyGen_Type;
37 #define PyGen_Check(op) PyObject_TypeCheck(op, &PyGen_Type)
38 #define PyGen_CheckExact(op) Py_IS_TYPE(op, &PyGen_Type)
/third_party/python/Doc/c-api/
Dgen.rst18 .. c:var:: PyTypeObject PyGen_Type
31 Return true if *ob*'s type is :c:type:`PyGen_Type`; *ob* must not be
/third_party/python/Objects/
Dgenobject.c777 PyTypeObject PyGen_Type = { variable
865 return gen_new_with_qualname(&PyGen_Type, f, name, qualname); in PyGen_NewWithQualName()
871 return gen_new_with_qualname(&PyGen_Type, f, NULL, NULL); in PyGen_New()
Dobject.c1830 INIT_TYPE(PyGen_Type); in _PyTypes_Init()
/third_party/python/Tools/c-analyzer/
DTODO848 Objects/genobject.c:PyGen_Type PyTypeObject PyGen_Type
/third_party/python/Modules/
D_asynciomodule.c2894 res = PyObject_IsInstance(result, (PyObject*)&PyGen_Type); in task_step_impl()
D_testcapimodule.c4978 if (!PyArg_ParseTuple(args, "O!", &PyGen_Type, &gen)) in raise_SIGINT_then_send_None()
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv1588 Objects/genobject.c - PyGen_Type -
/third_party/python/Python/
Dcompile.c4133 return &PyGen_Type; in infer_type()