[issue4569] Segfault when mutating a memoryview to an array.array

2008-12-07 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: Fixed in r67650 and r67651. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue4569] Segfault when mutating a memoryview to an array.array

2008-12-06 Thread Antoine Pitrou
New submission from Antoine Pitrou <[EMAIL PROTECTED]>: >>> from array import array >>> a = array('i', range(16)) >>> m = memoryview(a) >>> m[:] = array('i', range(16)) Erreur de segmentation -- components: Interpreter Core messages: 77195 nosy: pitrou priority: critical severity: normal