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 vstinner
Recipients pitrou, serhiy.storchaka, skrah, vstinner
Date 2013-10-21.00:12:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382314380.05.0.635321639176.issue19321@psf.upfronthosting.co.za>
In-reply-to
Content
> Already proposed in issue9757.

Well, it was not only proposed, but it was also implemented (by Antoine).

Python 3.4.0a3+ (default:84a8b797c5c5+, Oct 20 2013, 16:02:32) 
[GCC 4.8.1 20130603 (Red Hat 4.8.1-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> x=memoryview(b'abc')
>>> with x: pass
... 
>>> bytes(x)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: operation forbidden on released memoryview object
History
Date User Action Args
2013-10-21 00:13:00vstinnersetrecipients: + vstinner, pitrou, skrah, serhiy.storchaka
2013-10-21 00:13:00vstinnersetmessageid: <1382314380.05.0.635321639176.issue19321@psf.upfronthosting.co.za>
2013-10-21 00:13:00vstinnerlinkissue19321 messages
2013-10-21 00:12:59vstinnercreate