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
Date 2010-09-07.13:41:13
SpamBayes Score 2.9641006e-10
Marked as misclassified No
Message-id <1283866875.99.0.781499966507.issue9757@psf.upfronthosting.co.za>
In-reply-to
Content
I closed 9789 as a duplicate of this. Bringing the details from that issue over here:
====================================
memoryview objects currently offer no way to explicitly release the underlying buffer.

This may cause problems for mutable objects that are locked while PEP 3118 buffer references remain unreleased (e.g. in 3.2, io.BytesIO supports getbuffer() for direct access to the underlying memory, but disallows resizing until the associated memoryview goes away).

This isn't too bad in CPython due to explicit refcounting, but may be an issue when using other implementations since the time between release of the last reference and actual garbage collection is indeterminate. For example, the new test_getbuffer in the BytesIOMixin class in the test suite can't rely on "del buf" promptly releasing the underlying PEP 3118 buffer, so it is forced to also invoke a full GC collection cycle in order to be portable to other implementations.

So there are two separate questions here:
1. Whether or not to add an explicit "release()" method to memoryview objects (this would be sufficient to address the problem)
2. Whether or not to add direct context management support to memoryview objects (this isn't really necessary, since a short context manager can do the same thing, but may be a nice convenience)

Guido was -0 on the idea of supporting the context management protocol, but the rationale presented to him at the time was lacking the key concept of behavioural changes in the object owning the buffer based on whether or not there were any outstanding buffer references.
History
Date User Action Args
2010-09-07 13:41:16ncoghlansetrecipients: + ncoghlan, pitrou
2010-09-07 13:41:15ncoghlansetmessageid: <1283866875.99.0.781499966507.issue9757@psf.upfronthosting.co.za>
2010-09-07 13:41:13ncoghlanlinkissue9757 messages
2010-09-07 13:41:13ncoghlancreate