rustpython-ruff_python_parser 0.15.8

Unofficial fork for RustPython
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: ...