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 vstinner
Recipients jcea, techtonik, vstinner
Date 2013-03-17.14:34:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1363530845.57.0.328986351966.issue17436@psf.upfronthosting.co.za>
In-reply-to
Content
> obj.update(buffer[:size])

This code does an useless memory copy: obj.update(memoryview(buffer)[:size]) can be used instead.
History
Date User Action Args
2013-03-17 14:34:05vstinnersetrecipients: + vstinner, jcea, techtonik
2013-03-17 14:34:05vstinnersetmessageid: <1363530845.57.0.328986351966.issue17436@psf.upfronthosting.co.za>
2013-03-17 14:34:05vstinnerlinkissue17436 messages
2013-03-17 14:34:05vstinnercreate