[issue27559] Crash On bytearray()

2016-07-18 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: remind -> not a bug stage: -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing

[issue27559] Crash On bytearray()

2016-07-18 Thread pablo sacristan
pablo sacristan added the comment: I know, but then shouldn't you try limiting the amount of data it allocates? Or maybe allow for keyboard interrupts to be used while the it is going on, because keyboard interrupts weren't working while it was working. -- resolution: not a bug -> remi

[issue27559] Crash On bytearray()

2016-07-18 Thread Martin Panter
Martin Panter added the comment: bytearray(n) needs to allocate n bytes. Unless your computer has 1024 GiB of memory, this is not going to be possible. If you are using an OS like Linux, it may pretend to allocate that much memory, and then kill the process when it realizes it has overallocate

[issue27559] Crash On bytearray()

2016-07-18 Thread pablo sacristan
New submission from pablo sacristan: There is a crash on bytearray(), not really a crash but rather the process gets killed by the kernel, but that is a crash, and the keyboard interrupt stops working while bytearray is working, so you can either restart python or wait for python to get killed