diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-04-20 16:49:48 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-04-20 16:49:48 (GMT) |
commit | 8c09ebcf0cfc40ff4749e4937db797e5217cf453 (patch) | |
tree | f086ce90c11e83773a2f0775048e54ab614083b9 /Doc/library/functions.rst | |
parent | 1f8dd363b72a018842d2cb4bdd5dc2d31f6d53df (diff) | |
download | cpython-8c09ebcf0cfc40ff4749e4937db797e5217cf453.zip cpython-8c09ebcf0cfc40ff4749e4937db797e5217cf453.tar.gz cpython-8c09ebcf0cfc40ff4749e4937db797e5217cf453.tar.bz2 |
#8472: fix wrong function name in functions.rst: itertools.filterfalse -> itertools.ifilterfalse
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 928e73a..1724abb 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. |