setup-python/.github
Eric Wieser 82009b3bde
Use a better python problem matcher
The old matcher only worked if the error was raised with `raise Exception('single quotes')`.

This represents a miniscule fraction of errors; for instance, `l[37]` on a short list `l` can raise `IndexError`, and any call to a builtin C function is not going to trace back to a `raise` call.

Instead, this just matches the first line without fail that comes after the context line.

Note that this is still not foolproof; in Python 3.10, `SyntaxError`s are produced as 
```
  File "<stdin>", line 1
    foo(x, z for z in range(10), t, w)
           ^^^^^^^^^^^^^^^^^^^^
SyntaxError: Generator expression must be parenthesized
```

This matcher will incorrectly pick up `           ^^^^^^^^^^^^^^^^^^^^` as the error message, but the previous behavior was to not pick up any error message at all.

As far as I can tell, this is impossible to handle correctly; the grammar of problem matchers is far too limiting.
2022-06-07 18:21:56 +01:00
..
ISSUE_TEMPLATE Add issue and pull request templates (#258) 2021-10-20 12:22:43 +03:00
workflows add support for python-version-file (#336) 2022-06-02 16:37:57 +02:00
CODEOWNERS CODEOWNERS needs the org name for teams 2020-12-07 15:56:31 -05:00
pull_request_template.md Add issue and pull request templates (#258) 2021-10-20 12:22:43 +03:00
python.json Use a better python problem matcher 2022-06-07 18:21:56 +01:00