blob: 2db5e004d5a79314e4c3ff150a1a85a2ac4579b6 [file] [log] [blame]
def foo(a, b=None):
pass
foo("a", "b")
foo("a")
foo("a", b="b")