#8472: fix wrong function name in functions.rst: itertools.filterfalse -> itertools.ifilterfalse

This commit is contained in:
Ezio Melotti 2010-04-20 16:49:48 +00:00
parent 1f8dd363b7
commit 8c09ebcf0c

View file

@ -402,7 +402,7 @@ 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.filterfalse` for the complementary function that returns
See :func:`itertools.ifilterfalse` for the complementary function that returns
elements of *iterable* for which *function* returns false.