This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author amaury.forgeotdarc
Recipients amaury.forgeotdarc, djc, eric.araujo
Date 2010-07-20.18:04:06
SpamBayes Score 4.1075804e-05
Marked as misclassified No
Message-id <[email protected]>
In-reply-to
Content
This actually works for any iterator:
>>> l = []
>>> l += 'abc'
>>> l
['a', 'b', 'c']
History
Date User Action Args
2010-07-20 18:04:09amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, djc, eric.araujo
2010-07-20 18:04:09amaury.forgeotdarcsetmessageid: <[email protected]>
2010-07-20 18:04:07amaury.forgeotdarclinkissue9314 messages
2010-07-20 18:04:06amaury.forgeotdarccreate