[issue18301] In itertools.chain.from_iterable() there is no cls argument
New submission from py.user: http://docs.python.org/2/library/itertools.html#itertools.chain.from_iterabl...
class A: ... @classmethod ... def from_iterable(iterables): ... for it in iterables: ... for element in it: ... yield element ... A.from_iterable(['ABC', 'DEF']) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: from_iterable() takes 1 positional argument but 2 were given
---------- assignee: docs@python components: Documentation files: issue.diff keywords: patch messages: 191874 nosy: docs@python, py.user priority: normal severity: normal status: open title: In itertools.chain.from_iterable() there is no cls argument type: enhancement versions: Python 3.3, Python 3.4 Added file: http://bugs.python.org/file30702/issue.diff _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
py.user added the comment: http://docs.python.org/3/library/itertools.html#itertools.chain.from_iterabl... ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
R. David Murray added the comment: It is implemented as a classmethod, but the "equivalent" code doesn't need to be part of the class all. I'm not sure what should be done here (say @staticmethod? Leave the decorator off?). We should probably see what Raymond thinks. I lean toward the latter, that's the way it is in the python2 docs, and it doesn't seem to have caused any confusion. ---------- nosy: +r.david.murray, rhettinger _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
Terry J. Reedy added the comment: The 2.7 doc says 'Roughly equivalent to' rather than 'Equivalent to'. The undecorated Python version of from_iterable actually works as an attribute of the Python version of chain: chain.from_iterable = from_iterable. I would just remove the decorator. The entire itertools doc exploits that fact that generator functions are analogous to classes, but it does not work to mix the two in the way that the 3.x chain entry does. ---------- nosy: +terry.reedy _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
Serhiy Storchaka added the comment: Perhaps it should be staticmethod, not classmethod. ---------- nosy: +serhiy.storchaka _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
Serhiy Storchaka added the comment: It should be a classmethod.
import itertools class C(itertools.chain): pass ... type(C.from_iterable(['ab', 'cd'])) <class '__main__.C'>
The patch LGTM. ---------- assignee: docs@python -> serhiy.storchaka stage: -> commit review _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
Changes by Serhiy Storchaka <storchaka@gmail.com>: ---------- assignee: serhiy.storchaka -> rhettinger _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
Ezio Melotti added the comment:
I would just remove the decorator.
+1 ---------- nosy: +ezio.melotti _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
py.user added the comment:
import itertools
class A(itertools.chain): ... def from_iter(arg): ... return A(iter(arg)) ... class B(A): ... pass ... B('a', 'b') <__main__.B object at 0x7f40116d7730> B.from_iter(['a', 'b']) <__main__.A object at 0x7f40116d7780>
it should be B ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
py.user added the comment: changed iter(arg) to *arg
import itertools
class A(itertools.chain): ... @classmethod ... def from_iter(cls, arg): ... return cls(*arg) ... class B(A): ... pass ... B('ab', 'cd') <__main__.B object at 0x7fc280e93cd0> b = B.from_iter(['ab', 'cd']) b <__main__.B object at 0x7fc280e93d20> next(b) 'a' next(b) 'b' next(b) 'c' next(b) 'd' next(b) Traceback (most recent call last): File "<stdin>", line 1, in <module> StopIteration
---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
Terry J. Reedy added the comment: My counter proposal #18752 is that chain.from_iterable become a deprecated alias for a new function, chain_iterable. With '@classmethod' removed, the current Python equivalent would work for chain_iterable. ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
Roundup Robot added the comment: New changeset 29fa1f418796 by Raymond Hettinger in branch '3.3': Issue 18301: The classmethod decorator didn't fit well with the rough-equivalent example code. http://hg.python.org/cpython/rev/29fa1f418796 ---------- nosy: +python-dev _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
Changes by Raymond Hettinger <raymond.hettinger@gmail.com>: ---------- resolution: -> fixed status: open -> closed _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue18301> _______________________________________
participants (7)
-
Ezio Melotti
-
py.user
-
R. David Murray
-
Raymond Hettinger
-
Roundup Robot
-
Serhiy Storchaka
-
Terry J. Reedy