I have a function from which I would like to pass all arguments to another func. The following example does not work. how can I pass all positional arguments, and kwargs together, assuming they are not optional (I don't want to collect them as *args and/or *kwargs)?
def myfunc(arg1, arg2, arg3 = None, arg4 = None):
anotherfunc(*args, **kwargs)
Thanks