`func(a, *b, c)` should translate to `func(a, ...b, c)`. This is an easy one that would have saved me a bit of time.
func(a, *b, c)should translate tofunc(a, ...b, c). This is an easy one that would have saved me a bit of time.