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 exarkun
Recipients andybuckley, exarkun
Date 2010-06-25.12:10:33
SpamBayes Score 0.004645345
Marked as misclassified No
Message-id <1277467836.9.0.707052807313.issue9080@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for bringing this up.

I think you have more work to do to successfully make the case that L.insert(0, x) is "difficult" enough to merit the addition of a new list method.  There are already at least two in-place insert-at-front list APIs (the second being L[:0] = [x]).  There should be a very compelling reason for adding a third, and I don't think that being able to skip the extra 0 in the L.insert version is going to suffice.
History
Date User Action Args
2010-06-25 12:10:37exarkunsetrecipients: + exarkun, andybuckley
2010-06-25 12:10:36exarkunsetmessageid: <1277467836.9.0.707052807313.issue9080@psf.upfronthosting.co.za>
2010-06-25 12:10:35exarkunlinkissue9080 messages
2010-06-25 12:10:34exarkuncreate