New submission from Pierre Thibault <[email protected]>:
> help(filter)
Help on built-in function filter in module __builtin__:
filter(...)
filter(function or None, sequence) -> list, tuple, or string
Return those items of sequence for which function(item) is true. If
function is None, return the items that are true. If sequence is a tuple
or string, return the same type, else return a list.
(END)
The second argument can be an iterable. Suggestion: Replace the docstring with
the definition found at https://docs.python.org/2/library/functions.html#filter.
----------
assignee: docs@python
components: Documentation
messages: 313302
nosy: Pierre Thibault, docs@python
priority: normal
severity: normal
status: open
title: docstring of filter function is incorrect
versions: Python 2.7
_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue33006>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com