I am using the Python debugger in VSCode to debug a Flask application. I have set a breakpoint. When I inspect the call stack, however, I see only my code rather than the full stack (which should include Flask, Werkzeug, etc). How to I configure / see the full call stack rather than just of the app?
@app.route('/')
def index():
return '' # breakpoint
yields:
