Message168009
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. |
|
Date |
User |
Action |
Args |
2012-08-11 21:16:28 | loewis | set | recipients:
+ loewis, ncoghlan, skrah |
2012-08-11 21:16:27 | loewis | set | messageid: <1344719787.86.0.485615026169.issue15625@psf.upfronthosting.co.za> |
2012-08-11 21:16:27 | loewis | link | issue15625 messages |
2012-08-11 21:16:27 | loewis | create | |
|