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 georg.brandl
Recipients docs@python, ethan.furman, ezio.melotti, georg.brandl, r.david.murray, vy0123
Date 2014-10-27.07:52:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1414396344.46.0.0997009041584.issue22725@psf.upfronthosting.co.za>
In-reply-to
Content
next() is quite unlike match() and search(), as you almost never use next() on iterators directly. Rather, the iterator is iterated by constructs like a for loop or a comprehension, or another function that consumes it (list, map, ...)
History
Date User Action Args
2014-10-27 07:52:24georg.brandlsetrecipients: + georg.brandl, ezio.melotti, r.david.murray, docs@python, ethan.furman, vy0123
2014-10-27 07:52:24georg.brandlsetmessageid: <1414396344.46.0.0997009041584.issue22725@psf.upfronthosting.co.za>
2014-10-27 07:52:24georg.brandllinkissue22725 messages
2014-10-27 07:52:24georg.brandlcreate