Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 550e4673be538d98b6ddf5550b3922539cf5c4b2 authored by Victor Stinner on 08 December 2020, 23:32:54 UTC
bpo-32381: Add _PyRun_SimpleFileObject() (GH-23709)
Tip revision: 550e467
sphinx.json
{
    "problemMatcher": [
        {
            "owner": "sphinx-problem-matcher",
            "pattern": [
                {
                    "regexp": "^(.*):(\\d+):\\s+(\\w*):\\s+(.*)$",
                    "file": 1,
                    "line": 2,
                    "severity": 3,
                    "message": 4
                }
            ]
        },
        {
            "owner": "sphinx-problem-matcher-loose",
            "pattern": [
                {
                    "_comment": "A bit of a looser pattern, doesn't look for line numbers, just looks for file names relying on them to start with / and end with .rst",
                    "regexp": "(\/.*\\.rst):\\s+(\\w*):\\s+(.*)$",
                    "file": 1,
                    "severity": 2,
                    "message": 3
                }
            ]
        },
        {
            "owner": "sphinx-problem-matcher-loose-no-severity",
            "pattern": [
                {
                    "_comment": "Looks for file names ending with .rst and line numbers but without severity",
                    "regexp": "^(.*\\.rst):(\\d+):(.*)$",
                    "file": 1,
                    "line": 2,
                    "message": 3
                }
            ]           
        }
    ]
}
back to top