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 gvanrossum
Recipients asleep-cult, gvanrossum
Date 2021-01-07.03:17:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609989459.04.0.852468249288.issue42848@roundup.psfhosted.org>
In-reply-to
Content
The recursion error is actually inside the traceback module. The reason is that the code there calls itself recursively for each level of context. Since bar() builds up an endless chain of contexts as it calls itself recursively, that chain is very long.

Given that, do you feel comfortable trying to come up with a fix and submit a PR?
History
Date User Action Args
2021-01-07 03:17:39gvanrossumsetrecipients: + gvanrossum, asleep-cult
2021-01-07 03:17:39gvanrossumsetmessageid: <1609989459.04.0.852468249288.issue42848@roundup.psfhosted.org>
2021-01-07 03:17:39gvanrossumlinkissue42848 messages
2021-01-07 03:17:38gvanrossumcreate