This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author shuoz
Recipients shuoz
Date 2018-12-20.06:53:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1545288797.27.0.788709270274.issue35542@psf.upfronthosting.co.za>
In-reply-to
Content
stack exhaustion in 3.6.7.

in python  3.6.7 set recursive depth 20000 will exhaustion stack and get Segmentation fault. But this dont happen in python 2.7


```
import sys
sys.setrecursionlimit(20000)
def f():
    f()
f()
```
History
Date User Action Args
2018-12-20 06:53:17shuozsetrecipients: + shuoz
2018-12-20 06:53:17shuozsetmessageid: <1545288797.27.0.788709270274.issue35542@psf.upfronthosting.co.za>
2018-12-20 06:53:17shuozlinkissue35542 messages
2018-12-20 06:53:16shuozcreate