forked from pylint-dev/pylint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix overzealous
arguments-differ
for variadics
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
- Loading branch information
Showing
7 changed files
with
85 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
arguments-differ:22:Foo.kwonly_1:Parameters differ from overridden 'kwonly_1' method | ||
arguments-differ:25:Foo.kwonly_2:Parameters differ from overridden 'kwonly_2' method | ||
arguments-differ:28:Foo.kwonly_3:Parameters differ from overridden 'kwonly_3' method | ||
arguments-differ:31:Foo.kwonly_4:Parameters differ from overridden 'kwonly_4' method | ||
arguments-differ:34:Foo.kwonly_5:Parameters differ from overridden 'kwonly_5' method | ||
arguments-differ:25:Foo.kwonly_1:Parameters differ from overridden 'kwonly_1' method | ||
arguments-differ:28:Foo.kwonly_2:Parameters differ from overridden 'kwonly_2' method | ||
arguments-differ:31:Foo.kwonly_3:Parameters differ from overridden 'kwonly_3' method | ||
arguments-differ:34:Foo.kwonly_4:Parameters differ from overridden 'kwonly_4' method | ||
arguments-differ:37:Foo.kwonly_5:Parameters differ from overridden 'kwonly_5' method |