Home
last modified time | relevance | path

Searched refs:PyGen_Type (Results 1 - 6 of 6) sorted by relevance

/third_party/python/Include/cpython/
H A Dgenobject.h38 PyAPI_DATA(PyTypeObject) PyGen_Type;
40 #define PyGen_Check(op) PyObject_TypeCheck(op, &PyGen_Type)
41 #define PyGen_CheckExact(op) Py_IS_TYPE(op, &PyGen_Type)
/third_party/python/Objects/
H A Dgenobject.c838 PyTypeObject PyGen_Type = { variable
925 return make_gen(&PyGen_Type, func); in _Py_MakeCoro()
1005 return gen_new_with_qualname(&PyGen_Type, f, name, qualname); in PyGen_NewWithQualName()
1011 return gen_new_with_qualname(&PyGen_Type, f, NULL, NULL); in PyGen_New()
H A Dobject.c1898 &PyGen_Type,
/third_party/python/Modules/
H A D_asynciomodule.c2932 res = PyObject_IsInstance(result, (PyObject*)&PyGen_Type); in task_step_impl()
H A D_testcapimodule.c5211 if (!PyArg_ParseTuple(args, "O!", &PyGen_Type, &gen)) in raise_SIGINT_then_send_None()
/third_party/python/Python/
H A Dcompile.c4708 return &PyGen_Type; in infer_type()

Completed in 39 milliseconds