Issue 4569: Segfault when mutating a memoryview to an array.array (original) (raw)

Issue4569

Created on 2008-12-07 00:06 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg77195 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2008-12-07 00:06
>>> from array import array >>> a = array('i', range(16)) >>> m = memoryview(a) >>> m[:] = array('i', range(16)) Erreur de segmentation
msg77247 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2008-12-07 20:27
Fixed in r67650 and r67651.
History
Date User Action Args
2022-04-11 14:56:42 admin set github: 48819
2008-12-07 20:27:11 pitrou set status: open -> closedresolution: fixedmessages: +
2008-12-07 00:06:47 pitrou create