我正在使用VSCode中的Python调试器来调试Flask应用程序。我已经设置了断点。然而,当我检查调用堆栈时,我只看到了我的代码,而没有看到完整的堆栈(应该包括Flask、Werkzeug等)。如何配置/查看完整的调用堆栈,而不仅仅是应用程序?
@app.route('/')
def index():
return '' # breakpoint收益率:

发布于 2020-05-28 13:44:33
根据Visual Studio Code - Python debugging - Step into the code of external functions when executing,您需要将"justMyCode": false添加到启动配置中。
https://stackoverflow.com/questions/62057455
复制相似问题