Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/c-api/
Dcoro.rst29 .. c:function:: PyObject* PyCoro_New(PyFrameObject *frame, PyObject *name, PyObject *qualname)
/external/python/cpython3/Include/
Dgenobject.h64 PyAPI_FUNC(PyObject *) PyCoro_New(struct _frame *,
/external/python/cpython3/Doc/data/
Drefcounts.dat937 PyCoro_New:PyObject*::+1:
938 PyCoro_New:PyFrameObject*:frame:0:
939 PyCoro_New:PyObject*:name:0:
940 PyCoro_New:PyObject*:qualname:0:
/external/python/cpython3/Objects/
Dgenobject.c1155 PyCoro_New(PyFrameObject *f, PyObject *name, PyObject *qualname) in PyCoro_New() function
/external/python/cpython3/Python/
Dceval.c3907 gen = PyCoro_New(f, name, qualname); in _PyEval_EvalCodeWithName()