From 8c09ebcf0cfc40ff4749e4937db797e5217cf453 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Tue, 20 Apr 2010 16:49:48 +0000 Subject: [PATCH] #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 928e73a54e..1724abbbab 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -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. -- 2.50.0