-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Comparing changes
Open a pull request
base repository: pylint-dev/pylint
base: de0147e
head repository: pylint-dev/pylint
compare: 389e14c
- 12 commits
- 31 files changed
- 10 contributors
Commits on Apr 6, 2023
-
Fix check unused arguments false positive bug (#8542) (#8545)
Problem: the special method `__new__` must match the arguments of the `__init__` method even if `__new__` method does not use them. This generate `unused-argument` for the `__new__` method. Fix: the unused arguments check should not be done on the `__new__` method if the `__init__` method is defined in the same class. Update `unused-argument` test to include a check for the case of `__init__` and `__new__` being defined in a class but `__new__` does not use all of the argument. This is fine because `__new__` must have the same argument of `__init__`. Update with a second check in case of `__init__` being not defined in a class. Then the unused arguments check must be done on `__new__`. Fixes #3670 (cherry picked from commit 156da64) Co-authored-by: Théo Battrel <theo.util@protonmail.ch>
Configuration menu - View commit details
-
Copy full SHA for 84d4959 - Browse repository at this point
Copy the full SHA 84d4959View commit details
Commits on Apr 7, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 011c6ac - Browse repository at this point
Copy the full SHA 011c6acView commit details -
Fix typelias
invalid-name
false positives for Union variables witho…Configuration menu - View commit details
-
Copy full SHA for ed67cc8 - Browse repository at this point
Copy the full SHA ed67cc8View commit details -
Fix isinstance-second-argument-not-valid-type for union types with None
(cherry picked from commit b5f2b01)
Configuration menu - View commit details
-
Copy full SHA for bcceff6 - Browse repository at this point
Copy the full SHA bcceff6View commit details
Commits on Apr 10, 2023
-
Fix false positive for
positional-only-arguments-expected
when a …Configuration menu - View commit details
-
Copy full SHA for 61dae1e - Browse repository at this point
Copy the full SHA 61dae1eView commit details
Commits on Apr 12, 2023
-
Fix
unused-import
to checkdummy-variables-rgx
(#8566) (#8568)Configuration menu - View commit details
-
Copy full SHA for 16fe498 - Browse repository at this point
Copy the full SHA 16fe498View commit details
Commits on Apr 15, 2023
-
Fix false positive for
keyword-arg-before-vararg
(#8571) (#8578)Configuration menu - View commit details
-
Copy full SHA for ec96bdc - Browse repository at this point
Copy the full SHA ec96bdcView commit details
Commits on Apr 17, 2023
-
Improve output of
consider-using-generator
message formin()
call…Configuration menu - View commit details
-
Copy full SHA for 1dba30b - Browse repository at this point
Copy the full SHA 1dba30bView commit details
Commits on Apr 23, 2023
-
Upgrade astroid to 2.15.3 (#8584)
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com> (cherry picked from commit 3d036b7)
Configuration menu - View commit details
-
Copy full SHA for 5f7e2a5 - Browse repository at this point
Copy the full SHA 5f7e2a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for c2936a5 - Browse repository at this point
Copy the full SHA c2936a5View commit details
Commits on Apr 24, 2023
-
Upgrade astroid to 2.15.4 (#8615) (#8618)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> (cherry picked from commit a83137d) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 3fc153a - Browse repository at this point
Copy the full SHA 3fc153aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 389e14c - Browse repository at this point
Copy the full SHA 389e14cView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff de0147e...389e14c