產生器 (Generator) 物件¶
產生器物件是 Python 用來實現產生器疊代器 (generator iterator) 的物件。它們通常透過疊代會產生值的函式來建立,而不是顯式呼叫 PyGen_New() 或 PyGen_NewWithQualName()。
-
type PyGenObject¶
用於產生器物件的 C 結構。
-
PyTypeObject PyGen_Type¶
與產生器物件對應的型別物件。
-
int PyGen_CheckExact(PyObject *ob)¶
如果 ob 的型別是
PyGen_Type則回傳真值;ob 必須不為NULL。此函式總是會成功執行。
-
PyObject *PyGen_New(PyFrameObject *frame)¶
- 回傳值:新的參照。
Create and return a new generator object based on the frame object. A reference to frame is "stolen" by this function (even on error). The argument must not be
NULL.
-
PyObject *PyGen_NewWithQualName(PyFrameObject *frame, PyObject *name, PyObject *qualname)¶
- 回傳值:新的參照。
Create and return a new generator object based on the frame object, with
__name__and__qualname__set to name and qualname. A reference to frame is "stolen" by this function (even on error). The frame argument must not beNULL.
-
PyCodeObject *PyGen_GetCode(PyGenObject *gen)¶
Return a new strong reference to the code object wrapped by gen. This function always succeeds.
Asynchronous Generator Objects¶
也參考
-
PyTypeObject PyAsyncGen_Type¶
The type object corresponding to asynchronous generator objects. This is available as
types.AsyncGeneratorTypein the Python layer.在 3.6 版被加入.
-
PyObject *PyAsyncGen_New(PyFrameObject *frame, PyObject *name, PyObject *qualname)¶
Create a new asynchronous generator wrapping frame, with
__name__and__qualname__set to name and qualname. frame is "stolen" by this function (even on error) and must not beNULL.On success, this function returns a strong reference to the new asynchronous generator. On failure, this function returns
NULLwith an exception set.在 3.6 版被加入.