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 scoder
Recipients mark.dickinson, pitrou, scoder, serhiy.storchaka
Date 2014-11-16.18:43:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <5468F03E.6000605@behnel.de>
In-reply-to <1416148379.7.0.709724571246.issue18813@psf.upfronthosting.co.za>
Content
> why you pass through fast path only if -1<= Py_SIZE(v) <=1?

It's usually enough, it's the fastest fast path, and it doesn't even need
error handling.

Any slicing where the slice calculation time matters is going to be of
fairly limited size, often involving the values (!) 1 or -1 in the slice
object fields, but definitely small integers.
History
Date User Action Args
2014-11-16 18:43:12scodersetrecipients: + scoder, mark.dickinson, pitrou, serhiy.storchaka
2014-11-16 18:43:12scoderlinkissue18813 messages
2014-11-16 18:43:12scodercreate