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 <1279649049.29.0.0687064926271.issue9314@psf.upfronthosting.co.za>
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: <1279649049.29.0.0687064926271.issue9314@psf.upfronthosting.co.za>
2010-07-20 18:04:07amaury.forgeotdarclinkissue9314 messages
2010-07-20 18:04:06amaury.forgeotdarccreate