[docs] Doc for filterfalse is incorrect.

Pinku Surana pinku.surana at symbiont.io
Mon Oct 10 13:58:33 EDT 2016


Here: https://docs.python.org/3/library/itertools.html

In the table, the row for describing filterfalse. The Results column
says "elements of seq where pred(elem) is false".

And here, for the full documentation:
https://docs.python.org/3/library/itertools.html#itertools.filterfalse

In both cases, it says the result contains the elements where the predicate
returns false. That's not true. It returns the elements where the predicate
returns True. It's the opposite of filter.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/docs/attachments/20161010/b5323648/attachment.html>


More information about the docs mailing list