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 ncoghlan
Recipients ezio.melotti, flox, ncoghlan
Date 2013-04-25.07:34:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1366875274.63.0.554760989432.issue17828@psf.upfronthosting.co.za>
In-reply-to
Content
I tracked down the proximate cause of the weird exception in the bytes.decode case: the base64 module only accepts bytes and bytearray objects, instead of using memoryview to accept anything that supports the buffer API and provides a C-contiguous 8-bit view of the underlying data. Raised as issue 17839.
History
Date User Action Args
2013-04-25 07:34:34ncoghlansetrecipients: + ncoghlan, ezio.melotti, flox
2013-04-25 07:34:34ncoghlansetmessageid: <1366875274.63.0.554760989432.issue17828@psf.upfronthosting.co.za>
2013-04-25 07:34:34ncoghlanlinkissue17828 messages
2013-04-25 07:34:34ncoghlancreate