Objeto Generator¶
Generator objects are what Python uses to implement generator iterators. They
are normally created by iterating over a function that yields values, rather
than explicitly calling PyGen_New()
.
-
PyGenObject
¶ A estrutura C usada para objetos geradores.
-
PyTypeObject
PyGen_Type
¶ O objeto de tipo correspondendo a objetos geradores.
-
int
PyGen_Check
(ob)¶ Return true if ob is a generator object; ob must not be NULL.
-
int
PyGen_CheckExact
(ob)¶ Return true if ob’s type is PyGen_Type is a generator object; ob must not be NULL.