From: Ezio Melotti Date: Tue, 20 Apr 2010 16:49:48 +0000 (+0000) Subject: #8472: fix wrong function name in functions.rst: itertools.filterfalse -> itertools... X-Git-Tag: v2.7b2~238 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8c09ebcf0cfc40ff4749e4937db797e5217cf453;p=thirdparty%2FPython%2Fcpython.git #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 928e73a54e2c..1724abbbabe9 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.