From: Ezio Melotti Date: Tue, 20 Apr 2010 16:56:44 +0000 (+0000) Subject: Merged revisions 80270 via svnmerge from X-Git-Tag: v2.6.6rc1~427 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05842bbe1ab498eb99e1ea87211e3d17c1895dfa;p=python 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 ........ --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 0171e2409d..ff0004e8f4 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -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.