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
x[x := 1:]

# Starred expression
x[*x:]
x[:*x]
x[::*x]

# Empty slice
x[]

# Mixed starred expression and named expression
x[*x := 1]