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 Esa.Peuha
Recipients Esa.Peuha, docs@python
Date 2013-10-09.10:09:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381313356.45.0.650070848794.issue19202@psf.upfronthosting.co.za>
In-reply-to
Content
Here are some additions to documentation of a few functions:

all, any: alternative definitions using functools.reduce
enumerate: alternative definition using zip and itertools.count
sum: equivalent definition using functools.reduce and operator.add
functools.reduce: equivalent definitions, use operator.add in example
itertools.accumulate: point to functools.reduce
itertools.filterfalse: point to filter
History
Date User Action Args
2013-10-09 10:09:16Esa.Peuhasetrecipients: + Esa.Peuha, docs@python
2013-10-09 10:09:16Esa.Peuhasetmessageid: <1381313356.45.0.650070848794.issue19202@psf.upfronthosting.co.za>
2013-10-09 10:09:16Esa.Peuhalinkissue19202 messages
2013-10-09 10:09:16Esa.Peuhacreate