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 dabeaz
Recipients dabeaz, pitrou, skrah
Date 2012-09-14.17:30:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1347643870.04.0.0376711754309.issue15944@psf.upfronthosting.co.za>
In-reply-to
Content
I should add that 0-dim indexing doesn't work as described either:

>>> import ctypes
>>> d = ctypes.c_double()
>>> m = memoryview(d)
>>> m[()]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NotImplementedError: memoryview: unsupported format <d
>>>
History
Date User Action Args
2012-09-14 17:31:10dabeazsetrecipients: + dabeaz, pitrou, skrah
2012-09-14 17:31:10dabeazsetmessageid: <1347643870.04.0.0376711754309.issue15944@psf.upfronthosting.co.za>
2012-09-14 17:30:49dabeazlinkissue15944 messages
2012-09-14 17:30:48dabeazcreate