From 05842bbe1ab498eb99e1ea87211e3d17c1895dfa Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Tue, 20 Apr 2010 16:56:44 +0000 Subject: [PATCH] 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 ........ --- Doc/library/functions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.50.1