From: Andrew M. Kuchling Date: Mon, 30 Mar 2009 23:08:24 +0000 (+0000) Subject: typo fix X-Git-Tag: v2.7a1~1723 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efa97718e65d200a947d3d2623801f52d1dc1428;p=thirdparty%2FPython%2Fcpython.git typo fix --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 3a57cd9011a6..0b7907295d6f 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -216,7 +216,7 @@ loops that truncate the stream. Make an iterator that filters elements from *data* returning only those that have a corresponding element in *selectors* that evaluates to ``True``. - Stops when either the *data* or *selectors* iterables have been exhausted. + Stops when either the *data* or *selectors* iterables has been exhausted. Equivalent to:: def compress(data, selectors):