Commit fed84c76 authored by Raymond Hettinger's avatar Raymond Hettinger

Issue 5443: Fix typo.

parent 629f9f29
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment