]> granicus.if.org Git - python/commitdiff
#7746: rephrase a sentence
authorEzio Melotti <ezio.melotti@gmail.com>
Thu, 21 Jan 2010 20:50:57 +0000 (20:50 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Thu, 21 Jan 2010 20:50:57 +0000 (20:50 +0000)
Doc/library/itertools.rst

index f8d9d2617ca479f5fa7f5d389aab1f10459d2dea..a98b2b661eed9019e17d7be00e32a70159fabed6 100644 (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