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 loewis
Recipients loewis, ncoghlan, skrah
Date 2012-08-11.21:16:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344719787.86.0.485615026169.issue15625@psf.upfronthosting.co.za>
In-reply-to
Content
Currently, the following test case fails:

>>> import array
>>> a=array.array('u', 'foo')
>>> memoryview(a)==memoryview(a)
False

This is because the memoryview object doesn't support the u and w codes, as it should per PEP 3118. This patch fixes it.
History
Date User Action Args
2012-08-11 21:16:28loewissetrecipients: + loewis, ncoghlan, skrah
2012-08-11 21:16:27loewissetmessageid: <1344719787.86.0.485615026169.issue15625@psf.upfronthosting.co.za>
2012-08-11 21:16:27loewislinkissue15625 messages
2012-08-11 21:16:27loewiscreate