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 py.user
Recipients ezio.melotti, py.user, serhiy.storchaka, siegfried.gevatter, terry.reedy, twouters
Date 2016-01-03.09:27:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1451813247.69.0.313671981676.issue12606@psf.upfronthosting.co.za>
In-reply-to
Content
Also memoryview() doesn't support:

>>> m = memoryview(bytearray(b'abcde'))
>>> m[::2] = ()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'tuple' does not support the buffer interface
>>> m[::2] = b''
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: memoryview assignment: lvalue and rvalue have different structures
>>> m[::2] = b'123'
>>> m.tobytes()
b'1b2d3'
>>>
History
Date User Action Args
2016-01-03 09:27:27py.usersetrecipients: + py.user, twouters, terry.reedy, ezio.melotti, serhiy.storchaka, siegfried.gevatter
2016-01-03 09:27:27py.usersetmessageid: <1451813247.69.0.313671981676.issue12606@psf.upfronthosting.co.za>
2016-01-03 09:27:27py.userlinkissue12606 messages
2016-01-03 09:27:27py.usercreate