[issue7985] access to infinitely recursive list

2017-06-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Correction to the last message. Issue5765 was a 3.x issue. It was fixed for 3.3+, and it was decided to not fix it for 2.7 and 3.2. This issue is not reproduced in 3.3+. -- nosy: +serhiy.storchaka ___ Python track

[issue7985] access to infinitely recursive list

2010-08-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: > This is a close duplicate of issue5765. Except that #5765 is apparently not a 3.x issue, while this example, WinXP, 3.1.2 crashes the command window in about 5 sec, while IDLE gets locked (^C does not break). -- nosy: +terry.reedy versions: +Python

[issue7985] access to infinitely recursive list

2010-02-22 Thread LukMak
New submission from LukMak : Execution: >>> l=[] >>> l.append(l) >>> l [[...]] >>> l[0] [[...]] >>> l[0][0][0] [[...]] >>> eval('l'+'[0]'*10) [[...]] >>> eval('l'+'[0]'*666) [[...]] >>> eval('l'+'[0]'*99) Segmentation fault Environment: 2.6.24-27-generic #1 SMP, Ubuntu 8.04.4 LTS, Both Pytho