#7746: rephrase a sentence

This commit is contained in:
Ezio Melotti 2010-01-21 20:50:57 +00:00
parent a3112d1462
commit 77a64e7159
1 changed files with 2 additions and 3 deletions

View File

@ -24,9 +24,8 @@ algebra" making it possible to construct specialized tools succinctly and
efficiently in pure Python.
For instance, SML provides a tabulation tool: ``tabulate(f)`` which produces a
sequence ``f(0), f(1), ...``. This toolbox provides :func:`imap` and
:func:`count` which can be combined to form ``imap(f, count())`` to produce an
equivalent result.
sequence ``f(0), f(1), ...``. The same effect can be achieved in Python
by combining :func:`imap` and :func:`count` to form ``imap(f, count())``.
These tools and their built-in counterparts also work well with the high-speed
functions in the :mod:`operator` module. For example, the multiplication