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 ncoghlan
Recipients ncoghlan, pitrou, rupole
Date 2010-11-02.22:30:01
SpamBayes Score 1.3794175e-05
Marked as misclassified No
Message-id <1288737004.38.0.369323365897.issue10181@psf.upfronthosting.co.za>
In-reply-to
Content
As far as I know, PEP 3118 serves its purpose of allowing extension modules like numpy and PIL to share data without needing to copy it around all the time. It's just that memoryview wasn't really part of that purpose (since all the affected third party libraries have their own objects for looking at memory), and it shows :P

Our near term goal should be to get memoryview in a good place for handling 1D contiguous data and throw exceptions (rather than crashing) for everything else. I think Antoine has achieved the former, but it sounds like there is still some work to do on the latter.
History
Date User Action Args
2010-11-02 22:30:04ncoghlansetrecipients: + ncoghlan, rupole, pitrou
2010-11-02 22:30:04ncoghlansetmessageid: <1288737004.38.0.369323365897.issue10181@psf.upfronthosting.co.za>
2010-11-02 22:30:01ncoghlanlinkissue10181 messages
2010-11-02 22:30:01ncoghlancreate