Select correct method to invoke when keyword arguments are used by danabr · Pull Request #1242 · pythonnet/pythonnet
What does this implement/fix? Explain your changes.
If there were two methods with the same name, but with different arity,
Foo(a) and Foo(a,b), and the latter was called with a keyword
argument some.Foo(0, b=1), Foo(0) would be called instead of
Foo(0,1).
Does this close any currently open issues?
Fixes #1235.
Checklist
Check all those that are applicable and complete.