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 ethan.furman
Recipients bquinlan, cool-RR, docs@python, ethan.furman, jnoller, ncoghlan, paul.moore, pitrou, rhettinger, sbt
Date 2015-06-08.16:39:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433781548.64.0.934978963419.issue24195@psf.upfronthosting.co.za>
In-reply-to
Content
The recipe will work in simple situations.

In more complex situations:

  - infinite iterator
  - really large iterator (millions of items)
  - high work load to produce next iteration

the recipe will either have a severe impact on performance or fail entirely.
History
Date User Action Args
2015-06-08 16:39:08ethan.furmansetrecipients: + ethan.furman, rhettinger, paul.moore, bquinlan, ncoghlan, pitrou, jnoller, cool-RR, docs@python, sbt
2015-06-08 16:39:08ethan.furmansetmessageid: <1433781548.64.0.934978963419.issue24195@psf.upfronthosting.co.za>
2015-06-08 16:39:08ethan.furmanlinkissue24195 messages
2015-06-08 16:39:08ethan.furmancreate