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 alexandre.vassalotti, josh.r, serhiy.storchaka
Date 2016-01-20.20:21:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1453321299.24.0.235927361133.issue26167@psf.upfronthosting.co.za>
In-reply-to
Content
methodcaller is not needed. We can use just list.copy etc.

Proposed patch speeds up copying list, dict, set, bytearray, slice, NotImplemented. It makes deepcopying list, tuple, dict a little faster.  It makes the code for copying and deepcopying using reduce protocol cleaner and a little faster. It cleans up the module and adds new tests for builtin types.
History
Date User Action Args
2016-01-20 20:21:39serhiy.storchakasetrecipients: + serhiy.storchaka, alexandre.vassalotti, josh.r
2016-01-20 20:21:39serhiy.storchakasetmessageid: <1453321299.24.0.235927361133.issue26167@psf.upfronthosting.co.za>
2016-01-20 20:21:39serhiy.storchakalinkissue26167 messages
2016-01-20 20:21:38serhiy.storchakacreate