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 xxm
Recipients Dennis Sweeney, ronaldoussoren, xxm
Date 2020-11-30.08:19:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1606724349.43.0.848640929972.issue42509@roundup.psfhosted.org>
In-reply-to
Content
But program like following program 3 will not cause any core dump, RecursionError is also being caught in this  Recursion.
program 3
def rec():
	try:
		rec()
	except:
		pass
rec()

Beside,I use sys.setrecursionlimit(80), and the program 1 still cause core dump.I print sys.getrecursionlimit(),the value is 1000. 80 is << 50 +1000, it shouldn't cause core dump.
History
Date User Action Args
2020-11-30 08:19:09xxmsetrecipients: + xxm, ronaldoussoren, Dennis Sweeney
2020-11-30 08:19:09xxmsetmessageid: <1606724349.43.0.848640929972.issue42509@roundup.psfhosted.org>
2020-11-30 08:19:09xxmlinkissue42509 messages
2020-11-30 08:19:09xxmcreate