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 rhettinger
Recipients jcea, jcon, rhettinger, sfllaw
Date 2013-01-11.22:43:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357944226.67.0.134966521839.issue16398@psf.upfronthosting.co.za>
In-reply-to
Content
The easiest change would essentially involve inlining the code for append/appendleft and then removing unneeded steps (the state update, the INCREF/DECREF of item, and the TRIM() test).  

Of these, the INCREF/DECREF is likely to be a nice win because we can rotate without visiting all the underlying objects (each of which would likely be a cache-line miss).
History
Date User Action Args
2013-01-11 22:43:46rhettingersetrecipients: + rhettinger, jcea, sfllaw, jcon
2013-01-11 22:43:46rhettingersetmessageid: <1357944226.67.0.134966521839.issue16398@psf.upfronthosting.co.za>
2013-01-11 22:43:46rhettingerlinkissue16398 messages
2013-01-11 22:43:46rhettingercreate