]> granicus.if.org Git - python/commitdiff
clarify in/not in in case of infinite iterators; thanks to Sergey Skovorodkin from...
authorSandro Tosi <sandro.tosi@gmail.com>
Wed, 15 Aug 2012 19:37:19 +0000 (21:37 +0200)
committerSandro Tosi <sandro.tosi@gmail.com>
Wed, 15 Aug 2012 19:37:19 +0000 (21:37 +0200)
Doc/howto/functional.rst

index 9636c6cd57652d03d00c5b9b697984409ef35bec..836ec6da41379457cfd5bb5e62821462886fb0a3 100644 (file)
@@ -244,9 +244,9 @@ Built-in functions such as :func:`max` and :func:`min` can take a single
 iterator argument and will return the largest or smallest element.  The ``"in"``
 and ``"not in"`` operators also support iterators: ``X in iterator`` is true if
 X is found in the stream returned by the iterator.  You'll run into obvious
-problems if the iterator is infinite; ``max()``, ``min()``, and ``"not in"``
+problems if the iterator is infinite; ``max()``, ``min()``
 will never return, and if the element X never appears in the stream, the
-``"in"`` operator won't return either.
+``"in"`` and ``"not in"`` operators won't return either.
 
 Note that you can only go forward in an iterator; there's no way to get the
 previous element, reset the iterator, or make a copy of it.  Iterator objects