Message141860
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] |
|
| Date |
User |
Action |
Args |
| 2011-08-10 12:39:22 | skrah | set | recipients:
+ skrah, gvanrossum, georg.brandl, teoliphant, mark.dickinson, pitrou, scoder, vstinner, benjamin.peterson |
| 2011-08-10 12:39:22 | skrah | set | messageid: <[email protected]> |
| 2011-08-10 12:39:21 | skrah | link | issue8305 messages |
| 2011-08-10 12:39:21 | skrah | create | |
|