littrs-ruff-python-parser 0.6.2

Vendored ruff_python_parser for littrs (from github.com/astral-sh/ruff)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
match x:
    case var: ...  # capture pattern
    case 2: ...
match x:
    case _: ...
    case 2: ...    # wildcard pattern
match x:
    case var1 as var2: ...  # as pattern with irrefutable left-hand side
    case 2: ...
match x:
    case enum.variant | var: ...  # or pattern with irrefutable part
    case 2: ...