[New-bugs-announce] [issue4569] Segfault when mutating a memoryview to an array.array

Antoine Pitrou report at bugs.python.org
Sun Dec 7 01:06:48 CET 2008


New submission from Antoine Pitrou <pitrou at free.fr>:

>>> 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
status: open
title: Segfault when mutating a memoryview to an array.array
type: crash
versions: Python 3.0

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue4569>
_______________________________________


More information about the New-bugs-announce mailing list