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 kachayev
Recipients asvetlov, docs@python, ezio.melotti, kachayev, rhettinger, serhiy.storchaka
Date 2013-01-19.09:31:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1358587870.25.0.701910334724.issue16774@psf.upfronthosting.co.za>
In-reply-to
Content
It's hard to evaluate how popular given recipes, but:
* drop is opposite to take, so it's as popular as take
* the same situation with splitat, splitby - it's one case of partition that's hard to write each time with enumerator (partition is already in documentation)
* takelast, droplast was added cause itertools.islice doesn't support negative indices (which is ok). both functions have not obvious implementation - I'm sure that recipes will be good example for users how to work with iterators even if concrete functions aren't so widely-spreaded
History
Date User Action Args
2013-01-19 09:31:10kachayevsetrecipients: + kachayev, rhettinger, ezio.melotti, asvetlov, docs@python, serhiy.storchaka
2013-01-19 09:31:10kachayevsetmessageid: <1358587870.25.0.701910334724.issue16774@psf.upfronthosting.co.za>
2013-01-19 09:31:10kachayevlinkissue16774 messages
2013-01-19 09:31:09kachayevcreate