[issue9314] inconsistent result when concatenating list with iterators

Amaury Forgeot d'Arc report at bugs.python.org
Tue Jul 20 20:04:09 CEST 2010


Amaury Forgeot d'Arc <amauryfa at gmail.com> added the comment:

This actually works for any iterator:
>>> l = []
>>> l += 'abc'
>>> l
['a', 'b', 'c']

----------
nosy: +amaury.forgeotdarc

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue9314>
_______________________________________


More information about the Python-bugs-list mailing list