Commits

Yourkov Mikhail committed e675f0b2580
Pass rpc params into handler as args, not as */** Otherwise explicit function name argument could interfere: def f(x, **kwargs): ... f(1, **{"x": 1}) Fails because of duplicate argument 'x'. Not something we want when we just pass arbitrary parameters.