littrs-ruff-python-parser 0.6.2

Vendored ruff_python_parser for littrs (from github.com/astral-sh/ruff)
Documentation
while x:
    ...

while (x > 1) and y:
    pass
else:
    ...

while x and y:
    ...
    print('Hello World!')

else:
    print('Olá, Mundo!')
    ...

while a := b: ...
while (a := b) and c: ...
while lambda x: x: ...
while await x: ...

if True:
    while x:
        pass
    else:
        pass
else:
    pass