Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
Open
Description
Bug report
Bug description:
Reported herehttps://discuss.python.org/t/infinite-recursion/88900
def foo(depth = None): print(foo.count) foo.count = 1 return foo()foo.count = 1print(foo())
The problem is that normal Calls check the recursion limit remaining, but_PY_FRAME_GENERAL
does not.
I'm hesitant to backport the fix to 3.13, as it might break existing code.
CPython versions tested on:
CPython main branch, 3.13
Operating systems tested on:
No response