[issue18752] Make chain.from_iterable an alias for a new chain_iterable.

2013-09-09 Thread Raymond Hettinger
Raymond Hettinger added the comment: I'll work on improving the docs to make this classmethod more discoverable in docs, but the API is going to stay the same. -- resolution: - rejected ___ Python tracker rep...@bugs.python.org

[issue18752] Make chain.from_iterable an alias for a new chain_iterable.

2013-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset fa1fa88b685b by Raymond Hettinger in branch 'default': Issue 18752: Make chain.from_iterable() more visible in the documentation. http://hg.python.org/cpython/rev/fa1fa88b685b -- nosy: +python-dev ___

[issue18752] Make chain.from_iterable an alias for a new chain_iterable.

2013-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 23f77dc58979 by Raymond Hettinger in branch '3.3': Issue 18752: Make chain.from_iterable() more visible in the documentation. http://hg.python.org/cpython/rev/23f77dc58979 -- ___ Python tracker

[issue18752] Make chain.from_iterable an alias for a new chain_iterable.

2013-09-09 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18752 ___ ___

[issue18752] Make chain.from_iterable an alias for a new chain_iterable.

2013-09-08 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18752 ___ ___ Python-bugs-list

[issue18752] Make chain.from_iterable an alias for a new chain_iterable.

2013-09-01 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- assignee: - rhettinger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18752 ___ ___

[issue18752] Make chain.from_iterable an alias for a new chain_iterable.

2013-08-15 Thread Terry J. Reedy
New submission from Terry J. Reedy: It has become apparent from various discussions in recent months that chain.from_iterable is at least as useful as chain. In fact, I now think that 'chain' should have been what chain.from_iterable is, with current chain(a,b,c) done as chain((a,b,d)). But