summaryrefslogtreecommitdiffstats
path: root/Doc/library/itertools.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-01-21 20:59:06 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-01-21 20:59:06 (GMT)
commitea26c6c154d35ea38d909568bb9fad6ae86159dd (patch)
tree07a389f4dac4b5ca8d9ee48ee5e8af3642c4758a /Doc/library/itertools.rst
parente42ffae8c4b23ebc75d1343448b4918897cc4bbb (diff)
downloadcpython-ea26c6c154d35ea38d909568bb9fad6ae86159dd.zip
cpython-ea26c6c154d35ea38d909568bb9fad6ae86159dd.tar.gz
cpython-ea26c6c154d35ea38d909568bb9fad6ae86159dd.tar.bz2
Merged revisions 77677 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77677 | ezio.melotti | 2010-01-21 22:57:24 +0200 (Thu, 21 Jan 2010) | 9 lines 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 ........ ................
Diffstat (limited to 'Doc/library/itertools.rst')
-rw-r--r--Doc/library/itertools.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 3003552..5eb5806 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -22,7 +22,7 @@ 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), ...``. But, this effect can be achieved in Python
+sequence ``f(0), f(1), ...``. The same effect can be achieved in Python
by combining :func:`map` and :func:`count` to form ``map(f, count())``.
These tools and their built-in counterparts also work well with the high-speed