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 serhiy.storchaka
Recipients pitrou, r.david.murray, serhiy.storchaka, skrah
Date 2015-03-12.13:26:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426166783.05.0.807867990444.issue23632@psf.upfronthosting.co.za>
In-reply-to
Content
May be add support of multi-dimensional sub-views?

>>> m = memoryview(bytearray(range(12)))
>>> m2 = m.cast('B', (3,4))
>>> m2[0]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NotImplementedError: multi-dimensional sub-views are not implemented

Then we could use m2[0][1].
History
Date User Action Args
2015-03-12 13:26:23serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, r.david.murray, skrah
2015-03-12 13:26:23serhiy.storchakasetmessageid: <1426166783.05.0.807867990444.issue23632@psf.upfronthosting.co.za>
2015-03-12 13:26:23serhiy.storchakalinkissue23632 messages
2015-03-12 13:26:22serhiy.storchakacreate