diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-01-21 20:50:57 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-01-21 20:50:57 (GMT) |
commit | 77a64e7159b3efc7c41d340a87d98a03759824a0 (patch) | |
tree | f35af05d98eb87205b799b8a8fe99520832c0d45 /Doc/library | |
parent | a3112d146208d6db0dbb7abd50368a4ff6afe54c (diff) | |
download | cpython-77a64e7159b3efc7c41d340a87d98a03759824a0.zip cpython-77a64e7159b3efc7c41d340a87d98a03759824a0.tar.gz cpython-77a64e7159b3efc7c41d340a87d98a03759824a0.tar.bz2 |
#7746: rephrase a sentence
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/itertools.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index f8d9d26..a98b2b6 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -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 |