[issue33176] Allow memoryview.cast(readonly=...)

2018-04-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset 480ab05d5fee2b8fa161f799af33086a4e68c7dd by Antoine Pitrou in branch 'master': bpo-33176: Add a toreadonly() method to memoryviews. (GH-6466) https://github.com/python/cpython/commit/480ab05d5fee2b8fa161f799af33086a4e68c7dd

[issue33176] Allow memoryview.cast(readonly=...)

2018-04-13 Thread Antoine Pitrou
Change by Antoine Pitrou : -- pull_requests: +6161 ___ Python tracker ___ ___

[issue33176] Allow memoryview.cast(readonly=...)

2018-03-30 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I have created an initial implementation in PR 6314. -- nosy: +pablogsal ___ Python tracker

[issue33176] Allow memoryview.cast(readonly=...)

2018-03-30 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +6030 stage: -> patch review ___ Python tracker ___

[issue33176] Allow memoryview.cast(readonly=...)

2018-03-29 Thread Antoine Pitrou
New submission from Antoine Pitrou : It may be useful to get a readonly view of a memoryview. -- components: Interpreter Core messages: 314637 nosy: pitrou, skrah priority: normal severity: normal status: open title: Allow memoryview.cast(readonly=...) type: enhancement