[Python-checkins] r77676 - in python/branches/release26-maint: Doc/library/itertools.rst

ezio.melotti python-checkins at python.org
Thu Jan 21 21:52:23 CET 2010


Author: ezio.melotti
Date: Thu Jan 21 21:52:23 2010
New Revision: 77676

Log:
Merged revisions 77675 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77675 | ezio.melotti | 2010-01-21 22:50:57 +0200 (Thu, 21 Jan 2010) | 1 line
  
  #7746: rephrase a sentence
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/library/itertools.rst

Modified: python/branches/release26-maint/Doc/library/itertools.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/itertools.rst	(original)
+++ python/branches/release26-maint/Doc/library/itertools.rst	Thu Jan 21 21:52:23 2010
@@ -24,9 +24,8 @@
 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


More information about the Python-checkins mailing list