blob: 11c40f61c7b0092c3517e1f867eb8ab1dd79ea8a [file] [log] [blame] [edit]
def foo1(x, y, **kwargs):
bar1(
x,
y,
**kwargs
)
def foo2(x, y, *args):
bar2(
x,
y,
*args
)
def foo3(x, y, **kwargs):
bar2(
x,
y,
**kwargs
)
def foo4(x, y, *args):
bar4(
x,
y,
*args
)