[issue35542] stack exhaustion in 3.6.7

2018-12-19 Thread shuoz
shuoz added the comment: thank you for your reply. -- resolution: -> not a bug stage: -> resolved status: open -> closed type: security -> crash ___ Python tracker ___

[issue35542] stack exhaustion in 3.6.7

2018-12-19 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Related older issue : issue1110055 https://docs.python.org/3/library/sys.html#sys.setrecursionlimit > The highest possible limit is platform-dependent. A user may need to set the > limit higher when they have a program that requires deep recursion

[issue35542] stack exhaustion in 3.6.7

2018-12-19 Thread shuoz
New submission from shuoz : stack exhaustion in 3.6.7. in python 3.6.7 set recursive depth 2 will exhaustion stack and get Segmentation fault. But this dont happen in python 2.7 ``` import sys sys.setrecursionlimit(2) def f(): f() f() ``` -- components: 2to3 (2.x to