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 serhiy.storchaka
Recipients mark.dickinson, pitrou, scoder, serhiy.storchaka
Date 2014-11-16.14:32:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1416148379.7.0.709724571246.issue18813@psf.upfronthosting.co.za>
In-reply-to
Content
Indeed, PySequence_GetSlice() is used only in few performance non-critical places in the stdlib, PySequence_Set/DelSlice() are not used at all. So looks as this way doesn't speed up any code.

As for faster_PyEval_SliceIndex.patch see issue17576. May be such optimization is not always correct (only for exact PyLong). And why you pass through fast path only if -1<= Py_SIZE(v) <=1?
History
Date User Action Args
2014-11-16 14:32:59serhiy.storchakasetrecipients: + serhiy.storchaka, mark.dickinson, pitrou, scoder
2014-11-16 14:32:59serhiy.storchakasetmessageid: <1416148379.7.0.709724571246.issue18813@psf.upfronthosting.co.za>
2014-11-16 14:32:59serhiy.storchakalinkissue18813 messages
2014-11-16 14:32:59serhiy.storchakacreate