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 pitrou, serhiy.storchaka, vstinner
Date 2013-09-29.21:49:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380491383.51.0.329282138305.issue19087@psf.upfronthosting.co.za>
In-reply-to
Content
Deleting a slice at the front of a bytearray have linear complexity from the size of a bytearray (in any case del b[:1] is a little faster than b[:1] = b''). I doubt than any performance critical code do it instead of increasing an index in constant time.
History
Date User Action Args
2013-09-29 21:49:43serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, vstinner
2013-09-29 21:49:43serhiy.storchakasetmessageid: <1380491383.51.0.329282138305.issue19087@psf.upfronthosting.co.za>
2013-09-29 21:49:43serhiy.storchakalinkissue19087 messages
2013-09-29 21:49:43serhiy.storchakacreate