小编sse*_*era的帖子

在 Visual Studio Code 中将 "justMyCode": false 添加到 launch.json 时未定义名称“false”

我只是想在 python 中调试我的程序,其中我有一个第三方库(总是用 python 编写),但它不能按预期工作。

我的 launch.json 文件是:

{

"version": "0.2.0",
"configurations": [
    {
        "name": "Python: Current File",
        "type": "python",
        "request": "launch",
        "program": "${file}",
        "console": "integratedTerminal",
        "justMyCode": false
    }
  
]
Run Code Online (Sandbox Code Playgroud)

}

但它给了我错误:

名称“false”未定义

一旦我开始调试问题。

有人能帮助我吗?

先感谢您,

debugging python-3.x visual-studio-code vscode-debugger

12
推荐指数
1
解决办法
4561
查看次数