]> granicus.if.org Git - python/commitdiff
#8472: fix misleading reference to ifilterfalse() in filter() docs.
authorGeorg Brandl <georg@python.org>
Sun, 4 Jul 2010 17:28:33 +0000 (17:28 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 4 Jul 2010 17:28:33 +0000 (17:28 +0000)
Doc/library/functions.rst

index 1724abbbabe9b4e02af31955d540709d34430114..e54faaee4190d95d88d650f33ba416e02e312dc6 100644 (file)
@@ -402,8 +402,9 @@ available.  They are listed here in alphabetical order.
    iterable if function(item)]`` if function is not ``None`` and ``[item for item
    in iterable if item]`` if function is ``None``.
 
-   See :func:`itertools.ifilterfalse` for the complementary function that returns
-   elements of *iterable* for which *function* returns false.
+   See :func:`itertools.ifilter` and :func:`itertools.ifilterfalse` for iterator
+   versions of this function, including a variation that filters for elements
+   where the *function* returns false.
 
 
 .. function:: float([x])