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 <rep...@bugs.python.org> <http://bugs.python.org/issue15625> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com