This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients r.david.murray, svenrahmann, terry.reedy
Date 2009-05-08.19:11:30
SpamBayes Score 2.5151456e-08
Marked as misclassified No
Message-id <1241809896.66.0.478400858683.issue5968@psf.upfronthosting.co.za>
In-reply-to
Content
Questions and discussions like this should be directed to the
python-list, mirrored on newsgroups comp.lang.python and
gmane.comp.python.general (or possibly other forums).

I will say this much but *only* this much here:
1. Generators are iterators; by definition, iterator.__init__ returns
itself.  Nearly all iterators are single use.
2. Generator functions and their abbreviated form, generator
expressions, create generators.  To re-iterate, re-call the generator
function or re-execute the generator expression.

It is possible that discussion elsewhere would generator specific doc
improvement suggestions that could be submitted in a new issue.
History
Date User Action Args
2009-05-08 19:11:37terry.reedysetrecipients: + terry.reedy, r.david.murray, svenrahmann
2009-05-08 19:11:36terry.reedysetmessageid: <1241809896.66.0.478400858683.issue5968@psf.upfronthosting.co.za>
2009-05-08 19:11:34terry.reedylinkissue5968 messages
2009-05-08 19:11:31terry.reedycreate