From: Raymond Hettinger Date: Mon, 9 Mar 2009 11:31:39 +0000 (+0000) Subject: Issue 5443: Fix typo. X-Git-Tag: v2.7a1~1884 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fed84c765d85b6a0492f0b36df638bce1614764d;p=python Issue 5443: Fix typo. --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 2b1e7473aa..f68465a4a8 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -55,7 +55,7 @@ form an efficient dot-product: ``sum(imap(operator.add, vector1, vector2))``. :func:`ifilter` pred, seq elements of seq where pred(elem) is True :func:`ifilterfalse` pred, seq elements of seq where pred(elem) is False :func:`islice` seq, [start,] stop [, step] elements from seq[start:stop:step] - :func:`imap` func, p, q, ... func(p0, q0), fun(p1, q1), ... + :func:`imap` func, p, q, ... func(p0, q0), func(p1, q1), ... :func:`starmap` func, seq func(\*seq[0]), fun(\*seq[1]), ... :func:`tee` it, n it1, it2 , ... itn splits one iterator into n :func:`takewhile` pred, seq seq[0], seq[1], until pred fails