json 用于Python Traceback的VSCode Task.json。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json 用于Python Traceback的VSCode Task.json。相关的知识,希望对你有一定的参考价值。

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [{
        "taskName": "Run Python",
        "group": {
            "kind": "build",
            "isDefault": true
        },
        "command": "${config:python.pythonPath}",
        "type": "shell",
        "args": [
            "${file}"
        ],
        "presentation": {
            "reveal": "always",
            "panel": "new"
        },
        "problemMatcher": {
            "fileLocation": "absolute",
            "pattern": [{
                "regexp": "^\\s+File \"(.*?)\", line ([0-9]+)[,]?.+?$",
                "line": 2,
                "file": 1,
                "message": 0
            }, {
                "regexp": "^\\s+(.+?)$",
                "code": 1
            }]
        }
    }]
}

以上是关于json 用于Python Traceback的VSCode Task.json。的主要内容,如果未能解决你的问题,请参考以下文章

Python json & pickle, shelve 模块

python 生涯之常用模块

Python - 将 dict 转储为 json 字符串

python导入Json库一直失败怎么解决

Python json.loads ValueError,需要分隔符

python基础:json.loads(str)出现错误总结