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 gvanrossum, ncoghlan, pitrou
Date 2010-09-07.12:53:12
SpamBayes Score 1.9822644e-11
Marked as misclassified No
Message-id <1283863995.38.0.252730681612.issue9789@psf.upfronthosting.co.za>
In-reply-to
Content
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 relies on "del buf" promptly releasing the underlying PEP 3118 buffer, which may not be the case on 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)

Nosy list members added based on relevant python-dev discussion where GvR previously nixed part 2 of the idea. At the time, I hadn't really separated the two questions properly in my mind, but I suspect the failing to do something about the first one will prove problematic in the long run (or even the short run, as the test suite issue suggests).
History
Date User Action Args
2010-09-07 12:53:15ncoghlansetrecipients: + ncoghlan, gvanrossum, pitrou
2010-09-07 12:53:15ncoghlansetmessageid: <1283863995.38.0.252730681612.issue9789@psf.upfronthosting.co.za>
2010-09-07 12:53:13ncoghlanlinkissue9789 messages
2010-09-07 12:53:12ncoghlancreate