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 july
Recipients docs@python, july
Date 2011-02-13.23:04:56
SpamBayes Score 0.00028314308
Marked as misclassified No
Message-id <1297638296.9.0.737008909299.issue11208@psf.upfronthosting.co.za>
In-reply-to
Content
>>> list(accumulate(8, 2, 50))

fails. Correct version is

>>> list(accumulate([8, 2, 50]))
History
Date User Action Args
2011-02-13 23:04:57julysetrecipients: + july, docs@python
2011-02-13 23:04:56julysetmessageid: <1297638296.9.0.737008909299.issue11208@psf.upfronthosting.co.za>
2011-02-13 23:04:56julylinkissue11208 messages
2011-02-13 23:04:56julycreate