-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix overzealous arguments-differ
for variadics
#3001
Fix overzealous arguments-differ
for variadics
#3001
Conversation
Is there any progress on this? |
I'm going to tackle this in order to merge if it's alright for you @mattlbeck |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good, and the test cases are on point. Good job! I rebased this on the current master branch and I think there's nothing to change before merging.
1208b5e
to
23df6bf
Compare
@PCManticore it seems that the problem with Appveyor being stuck can only be fixed by an administrator (Source: appveyor/ci#1848). Could you check that, please ? I don't know if this problem happens often though. Maybe simply mergeing anyway would do? |
No message is emitted if the overriding function provides positional or keyword variadics in its signature that can feasibly accept and pass on all parameters given by the overridden function. Closes pylint-dev#1482 Closes pylint-dev#1553
c62dcf7
to
56b3ded
Compare
Thanks @mattlbeck, great MR. |
Hello, is there any progress on this, or has the Pylint team decided to keep the current behavior? Thanks @Pierre-Sassoulas |
Hey, it's been merged 4 years ago, so it's available on pretty much all versions you would want to use. |
Steps
doc/whatsnew/<current release.rst>
.Description
This PR suppresses the
arguments-differ
message if the overriding function provides positional or keyword variadics in its signature that can feasibly accept and pass on all parameters given by the overridden function.Type of Changes
Related Issue
Closes #1482
Closes #1553