[issue9737] Del on memoryview crashes CPython

2010-09-01 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.2 ___ Python tracker ___

[issue9737] Del on memoryview crashes CPython

2010-09-01 Thread Antoine Pitrou
Antoine Pitrou added the comment: Nice catch, thank you. I've fixed it in r84408 (py3k), r84410 (3.1) and r84411 (2.7). -- nosy: +pitrou ___ Python tracker ___ _

[issue9737] Del on memoryview crashes CPython

2010-09-01 Thread Dino Viehland
New submission from Dino Viehland : x = bytearray(b'abc') y = memoryview(x) del y[0:1] This crashes CPython 3.1.1 and 2.7. -- components: Interpreter Core messages: 115333 nosy: dino.viehland priority: normal severity: normal status: open title: Del on memoryview crashes CPython type: c