--- itertools_unpatched.rst 2009-03-10 12:47:45.000000000 +0100 +++ itertools.rst 2009-03-10 12:46:44.000000000 +0100 @@ -55,7 +55,7 @@ :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), func(p1, q1), ... - :func:`starmap` func, seq func(\*seq[0]), fun(\*seq[1]), ... + :func:`starmap` func, seq func(\*seq[0]), func(\*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 :func:`izip` p, q, ... (p[0], q[0]), (p[1], q[1]), ...