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 achampion
Recipients achampion, mark.dickinson, rhettinger
Date 2015-11-02.13:26:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1446470807.46.0.61852508041.issue25193@psf.upfronthosting.co.za>
In-reply-to
Content
Understandable, though it would have also made the first order recurrence relationships more accurate, e.g. annualized interest on an initial balance:

    accumulate(repeat(None), lambda: bal, _: bal*1.05, initializer=1000)

vs. artificially repeating 1000:

    accumulate(repeat(1000), lambda: bal, _: bal*1.05)

Or, if the initialiser is expensive:

    accumulate(chain([1000], repeat(None)), lambda: bal, _: bal*1.05)
History
Date User Action Args
2015-11-02 13:26:47achampionsetrecipients: + achampion, rhettinger, mark.dickinson
2015-11-02 13:26:47achampionsetmessageid: <1446470807.46.0.61852508041.issue25193@psf.upfronthosting.co.za>
2015-11-02 13:26:47achampionlinkissue25193 messages
2015-11-02 13:26:47achampioncreate