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 skrah
Recipients benjamin.peterson, georg.brandl, gvanrossum, mark.dickinson, pitrou, scoder, skrah, teoliphant, vstinner
Date 2011-08-10.12:39:21
SpamBayes Score 1.1026648e-06
Marked as misclassified No
Message-id <1312979962.78.0.384997605282.issue8305@psf.upfronthosting.co.za>
In-reply-to
Content
The crash is fixed in the features/pep-3118 repo:

>>> from numpy import array
>>> y=array([ 0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11])
>>> y.shape = 3,4
>>> view=memoryview(y)
>>> view2 = view[0]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NotImplementedError: multi-dimensional sub-views are not implemented
[182251 refs]
History
Date User Action Args
2011-08-10 12:39:22skrahsetrecipients: + skrah, gvanrossum, georg.brandl, teoliphant, mark.dickinson, pitrou, scoder, vstinner, benjamin.peterson
2011-08-10 12:39:22skrahsetmessageid: <1312979962.78.0.384997605282.issue8305@psf.upfronthosting.co.za>
2011-08-10 12:39:21skrahlinkissue8305 messages
2011-08-10 12:39:21skrahcreate