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 jcon, kermode, mark.dickinson, ncoghlan, petri.lehtinen, pitrou, pv, rupole, skrah, teoliphant, vstinner
Date 2011-07-06.04:16:49
SpamBayes Score 0.007390918
Marked as misclassified No
Message-id <1309925809.94.0.388727756115.issue10181@psf.upfronthosting.co.za>
In-reply-to
Content
Oops, Antoine's right, the release() semantics in the patch are broken, albeit for the precisely opposite reasons: that example will actually blow up with BufferError inside some_library_function().

I withdraw my objection - Antoine's right that release() on a memoryview object has to just mean "drop the reference to the ManagedBuffer instance". Calling release() when there are actual *exported* buffers outstanding should still trigger BufferError though (slices and copies don't count in that case, as they'll have their own independent references to the ManagedBuffer instance).
History
Date User Action Args
2011-07-06 04:16:50ncoghlansetrecipients: + ncoghlan, teoliphant, mark.dickinson, rupole, kermode, pitrou, vstinner, pv, skrah, jcon, petri.lehtinen
2011-07-06 04:16:49ncoghlansetmessageid: <1309925809.94.0.388727756115.issue10181@psf.upfronthosting.co.za>
2011-07-06 04:16:49ncoghlanlinkissue10181 messages
2011-07-06 04:16:49ncoghlancreate