Raw File
test_foo.py
def foo(a=3, *, c, d=2):
    pass
foo()
back to top