break stack frames into chunks

This commit is contained in:
William Bell
2025-08-05 05:11:09 +01:00
parent c3c41e0336
commit 8ba755aeac
6 changed files with 52 additions and 28 deletions

6
app.py
View File

@@ -1,4 +1,6 @@
def f():
f()
return g()
def g():
return f
f()
f()()