-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Create new error arguments-renamed #4467
Conversation
This commits creates the new error arguments-renamed based on the functionality added on pylint-dev#4422 and the changes of pylint-dev#4456.
This commit merges the two kinds of test files that existed for the arguments-differ error, since now all tests run in Python3.
for more information, see https://pre-commit.ci
@Pierre-Sassoulas what do you think about this? :) |
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.
Looks good, thanks. Lots of test added, very few changes, I like that :) ! I just have a small remark to reduce duplication. Maybe you want to take a look too @cdce8p ?
@Pierre-Sassoulas I have only briefly looked at it. I don't think it will add any errors so it should be ok once the review process is done. |
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.
Thanks for the refactor ! And thank for following through with this new message !
My pleasure! I'm glad I helped :) |
Steps
doc/whatsnew/<current release.rst>
.Description
This pull request creates a new error called
arguments-renamed
, which identifies any changes in theparameter names of overridden functions. It separates the functionality of
arguments-differ
.Based on additions of #4422 and #4456
It also merges the two kinds of test files (Py3- and Py3+) that existed for
arguments-differ
in one.Type of Changes
Related Issue
Part two and closes #3536