This might be a dumb question but is the context built only left to right? Or will this be legal? 

def f(a, *, b=:c, c=:b):
    print(f"{a=} {b=} {c=}")

>>> f(1, b=2)
a=1 b=2 c=2

>>> f(1, c=2)
a=1 b=2 c=2