Commit 4b080588 authored by Stefan Behnel's avatar Stefan Behnel

make call signature of method dispatch usable for both simple and general call nodes

parent 2675db3f
......@@ -601,7 +601,7 @@ class MethodDispatcherTransform(EnvTransform):
if self_arg is not None:
arg_list = [self_arg] + list(arg_list)
if kwargs:
return method_handler(node, arg_list, kwargs, is_unbound_method)
return method_handler(node, arg_list, is_unbound_method, kwargs)
else:
return method_handler(node, arg_list, is_unbound_method)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment