- Notifications
You must be signed in to change notification settings - Fork748
Select correct method to invoke when keyword arguments are used#1242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
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 keywordargument `some.Foo(0, b=1)`, `Foo(0)` would be called instead of`Foo(0,1)`.Fixespythonnet#1235.
codecov-commenter commentedSep 30, 2020 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov Report
@@ Coverage Diff @@## master #1242 +/- ##======================================= Coverage 86.25% 86.25% ======================================= Files 1 1 Lines 291 291 ======================================= Hits 251 251 Misses 40 40
Flags with carried forward coverage won't be shown.Click here to find out more. Continue to review full report at Codecov.
|
Uh oh!
There was an error while loading.Please reload this page.
Great thanks :) |
What does this implement/fix? Explain your changes.
If there were two methods with the same name, but with different arity,
Foo(a)
andFoo(a,b)
, and the latter was called with a keywordargument
some.Foo(0, b=1)
,Foo(0)
would be called instead ofFoo(0,1)
.Does this close any currently open issues?
Fixes#1235.
Checklist
Check all those that are applicable and complete.
AUTHORS
CHANGELOG