[Python-checkins] r70776 - python/trunk/Doc/library/itertools.rst

andrew.kuchling python-checkins at python.org
Tue Mar 31 01:08:25 CEST 2009


Author: andrew.kuchling
Date: Tue Mar 31 01:08:24 2009
New Revision: 70776

Log:
typo fix

Modified:
   python/trunk/Doc/library/itertools.rst

Modified: python/trunk/Doc/library/itertools.rst
==============================================================================
--- python/trunk/Doc/library/itertools.rst	(original)
+++ python/trunk/Doc/library/itertools.rst	Tue Mar 31 01:08:24 2009
@@ -216,7 +216,7 @@
 
    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):


More information about the Python-checkins mailing list