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 Mark.Shannon
Recipients Mark.Shannon, serhiy.storchaka, xxm
Date 2021-01-19.13:43:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1611063794.37.0.227781377198.issue42951@roundup.psfhosted.org>
In-reply-to
Content
Try setting the recursion limit to 10 or so and it should terminate.

The reason ctrl-C doesn't work is that you are catching the KeyboardInterrupt. Never use a plain `except:`, use `except Exception:`
History
Date User Action Args
2021-01-19 13:43:14Mark.Shannonsetrecipients: + Mark.Shannon, serhiy.storchaka, xxm
2021-01-19 13:43:14Mark.Shannonsetmessageid: <1611063794.37.0.227781377198.issue42951@roundup.psfhosted.org>
2021-01-19 13:43:14Mark.Shannonlinkissue42951 messages
2021-01-19 13:43:14Mark.Shannoncreate