Python varargs before function name?
I am doing Python coding in a client code base and I came across a line of code that looks something like this (variable names have been changed to protect the innocent):
reply = function1(a=foo, **function2(bar, b=baz))
Usually ** in the argument list collects the remaining keyword arguments, but what do they do before the function name?
+2
source to share