Merged revisions 82548,82634-82635 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/release27-maint
................
r82548 | georg.brandl | 2010-07-04 19:28:33 +0200 (So, 04 Jul 2010) | 1 line
#8472: fix misleading reference to ifilterfalse() in filter() docs.
................
r82634 | georg.brandl | 2010-07-07 21:05:35 +0200 (Mi, 07 Jul 2010) | 13 lines
Merged revisions 82629,82632 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r82629 | georg.brandl | 2010-07-07 20:51:43 +0200 (Mi, 07 Jul 2010) | 1 line
Make comment out of an awkward note.
........
r82632 | georg.brandl | 2010-07-07 21:04:36 +0200 (Mi, 07 Jul 2010) | 1 line
Turn more notes into comments.
........
................
r82635 | georg.brandl | 2010-07-07 21:09:12 +0200 (Mi, 07 Jul 2010) | 9 lines
Merged revisions 82615 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r82615 | georg.brandl | 2010-07-07 00:58:50 +0200 (Mi, 07 Jul 2010) | 1 line
Fix typo.
........
................
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index ff0004e..a70a29d 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -399,8 +399,9 @@
iterable if function(item)]`` if function is not ``None`` and ``[item for item
in iterable if item]`` if function is ``None``.
- See :func:`itertools.ifilterfalse` for the complementary function that returns
- elements of *iterable* for which *function* returns false.
+ See :func:`itertools.ifilter` and :func:`itertools.ifilterfalse` for iterator
+ versions of this function, including a variation that filters for elements
+ where the *function* returns false.
.. function:: float([x])