[New-bugs-announce] [issue15625] Support u and w codes in memoryview
Martin v. Löwis
report at bugs.python.org
Sat Aug 11 23:16:27 CEST 2012
New submission from Martin v. Löwis:
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.
----------
files: uwcodes.diff
keywords: patch
messages: 168009
nosy: loewis, ncoghlan, skrah
priority: normal
severity: normal
status: open
title: Support u and w codes in memoryview
Added file: http://bugs.python.org/file26769/uwcodes.diff
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue15625>
_______________________________________
More information about the New-bugs-announce
mailing list