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 pitrou
Recipients Arfrever, ezio.melotti, pitrou, serhiy.storchaka, skrah
Date 2012-09-22.10:21:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348309302.84.0.142602486395.issue15958@psf.upfronthosting.co.za>
In-reply-to
Content
Well, given the following works:

>>> import array
>>> a = array.array('d', [1.2345])
>>> b'' + a
b'\x8d\x97n\x12\x83\xc0\xf3?'

It should also work for bytes.join().
I guess that means I'm against the strict-typedness of memoryviews. As the name suggests, it provides access to some memory area, not some structured array of data.
History
Date User Action Args
2012-09-22 10:21:42pitrousetrecipients: + pitrou, ezio.melotti, Arfrever, skrah, serhiy.storchaka
2012-09-22 10:21:42pitrousetmessageid: <1348309302.84.0.142602486395.issue15958@psf.upfronthosting.co.za>
2012-09-22 10:21:42pitroulinkissue15958 messages
2012-09-22 10:21:41pitroucreate