rustpython-ruff_python_parser 0.15.8

Unofficial fork for RustPython
Documentation
1
2
3
4
def foo(a, *, *args, b): ...
# def foo(a, *, b, c, *args): ...
def foo(a, *args1, *args2, b): ...
def foo(a, *args1, b, c, *args2): ...