[issue14370] enumerate() lead to system crashes

2012-03-20 Thread Stefan Krah
Stefan Krah added the comment: I can reproduce this with Python 3.2 on Linux-2.4.32/i686 with 512M of RAM. The machine does not crash, it freezes completely in the same manner as with a fork bomb. A hard reboot is required. -- nosy: +skrah type: performance -> resource usage __

[issue14370] enumerate() lead to system crashes

2012-03-19 Thread aaron315
aaron315 added the comment: Have not been able to respond in a lower performance on the computer running, I restart the computer; On another computer, indeed MemoryError。 -- ___ Python tracker ___

[issue14370] enumerate() lead to system crashes

2012-03-19 Thread Brian Curtin
Brian Curtin added the comment: I just get a MemoryError. Do you actually receive a crash? -- nosy: +brian.curtin ___ Python tracker ___

[issue14370] enumerate() lead to system crashes

2012-03-19 Thread aaron315
New submission from aaron315 : alist=list(range(5)) alist.extend(enumerate(alist)) the computer will down !!! -- messages: 156379 nosy: aaron315 priority: normal severity: normal status: open title: enumerate() lead to system crashes type: performance versions: Python 3.2 __