Home
last modified time | relevance | path

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

/third_party/python/Doc/c-api/
Dgen.rst10 than explicitly calling :c:func:`PyGen_New` or :c:func:`PyGen_NewWithQualName`.
41 .. c:function:: PyObject* PyGen_NewWithQualName(PyFrameObject *frame, PyObject *name, PyObject *qua…
/third_party/python/Include/
Dgenobject.h41 PyAPI_FUNC(PyObject *) PyGen_NewWithQualName(PyFrameObject *,
/third_party/python/Doc/data/
Drefcounts.dat957 PyGen_NewWithQualName:PyObject*::+1:
958 PyGen_NewWithQualName:PyFrameObject*:frame:0:
959 PyGen_NewWithQualName:PyObject*:name:0:
960 PyGen_NewWithQualName:PyObject*:qualname:0:
/third_party/python/Objects/
Dgenobject.c863 PyGen_NewWithQualName(PyFrameObject *f, PyObject *name, PyObject *qualname) in PyGen_NewWithQualName() function
/third_party/python/Python/
Dceval.c5040 gen = PyGen_NewWithQualName(f, con->fc_name, con->fc_qualname); in make_coro()