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 vstinner
Recipients vstinner
Date 2009-05-10.17:29:33
SpamBayes Score 0.0016925681
Marked as misclassified No
Message-id <1241976576.36.0.361405566006.issue5986@psf.upfronthosting.co.za>
In-reply-to
Content
reversed(xrange(1, len(x))) is inefficient, xrange(len(x) - 1, 0, -1) 
gives exactly the same sequence but avoid reversed(). See attached 
patch. Don't expect amazing speedup.
History
Date User Action Args
2009-05-10 17:29:36vstinnersetrecipients: + vstinner
2009-05-10 17:29:36vstinnersetmessageid: <1241976576.36.0.361405566006.issue5986@psf.upfronthosting.co.za>
2009-05-10 17:29:34vstinnerlinkissue5986 messages
2009-05-10 17:29:34vstinnercreate