Commit 4e2d26ad authored by Ezio Melotti's avatar Ezio Melotti

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
........
parent b1ace092
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment