Merged revisions 80270 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80270 | ezio.melotti | 2010-04-20 19:49:48 +0300 (Tue, 20 Apr 2010) | 1 line

  #8472: fix wrong function name in functions.rst: itertools.filterfalse -> itertools.ifilterfalse
........
This commit is contained in:
Ezio Melotti 2010-04-20 16:56:44 +00:00
parent 0d0832d03c
commit 05842bbe1a
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,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.