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 Claudiu.Popa
Recipients Claudiu.Popa, ncoghlan, pitrou, skrah
Date 2013-09-29.06:22:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380435741.38.0.210402392433.issue19078@psf.upfronthosting.co.za>
In-reply-to
Content
For multidimensional arrays it doesn't seem to work (yet).

>>> x = numpy.array([[1,2,3], [4,5,6]])
>>> list(reversed(x))
[array([4, 5, 6]), array([1, 2, 3])]
>>> x.data
<memory at 0x8032d06b8>
>>> list(reversed(x.data))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NotImplementedError: multi-dimensional sub-views are not implemented
>>>
History
Date User Action Args
2013-09-29 06:22:21Claudiu.Popasetrecipients: + Claudiu.Popa, ncoghlan, pitrou, skrah
2013-09-29 06:22:21Claudiu.Popasetmessageid: <1380435741.38.0.210402392433.issue19078@psf.upfronthosting.co.za>
2013-09-29 06:22:21Claudiu.Popalinkissue19078 messages
2013-09-29 06:22:21Claudiu.Popacreate