-
-
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
Fix false positives for unnecessary-dunder-call
in lambdas
#9034
Fix false positives for unnecessary-dunder-call
in lambdas
#9034
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #9034 +/- ##
=======================================
Coverage 95.75% 95.75%
=======================================
Files 173 173
Lines 18652 18656 +4
=======================================
+ Hits 17860 17864 +4
Misses 792 792
|
This comment has been minimized.
This comment has been minimized.
Something's wrong with the primer, could you rebase on upstream/main please ? |
74d1d9e
to
d7dd8c6
Compare
Woops, done! Also looking into the changelog portion in the docs. |
9536285
to
259ee0d
Compare
This comment has been minimized.
This comment has been minimized.
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 pretty good already, great work. I made a surface review, I'll check the list of dunder when I'm not on mobile anymore.
pylint/constants.py
Outdated
|
||
# C2801 rule exceptions as their corresponding function/method/operator | ||
# is not valid python syntax in a lambda definition | ||
DUNDER_LAMBDA_EXCEPTIONS = [ |
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.
DUNDER_LAMBDA_EXCEPTIONS = [ | |
UNNECESSARY_DUNDER_CALL_LAMBDA_EXCEPTIONS = [ |
doc/whatsnew/fragments/8769.bugfix
Outdated
@@ -0,0 +1,3 @@ | |||
Add special cases of dunder methods that should not trigger ``unnecessary-dunder-call`` if it's in a lambda definition. |
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.
Add special cases of dunder methods that should not trigger ``unnecessary-dunder-call`` if it's in a lambda definition. | |
Dunder methods defined in lambda do not trigger ``unnecessary-dunder-call`` anymore, if they cannot be replaced by the non-dunder call. |
The fail on pypy3.8 seems to be due to the ast not being the same (column not calculated the same way). It's going to requires two functional tests files one for each interpreter. (Maybe we could permit an expected output per interpreter but it's not that much better). Or we can exclude the interprΓ©ter from the one file we have. |
Thanks for the suggestions!
I see the test fails for pypy3.8, but succeeds for pypy3.9. I looked into test options like |
@staticmethod | ||
def is_lambda_rule_exception(ancestor: nodes.NodeNG, node: nodes.NodeNG) -> bool: | ||
return ( | ||
isinstance(ancestor, nodes.Lambda) |
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.
We shouldn't backport this, since in 2.x of astroid, FunctionDef
inherits from Lambda
, see pylint-dev/astroid#2115.
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.
(And I don't think it's important enough to backport a different solution.)
Right, I think the pragmatic thing to do is just skip PyPy entirely with the exclude_implementations flag. pylint 3.0 won't see many months (single digits for sure) of python 3.8 support anyhow. |
259ee0d
to
47123c0
Compare
Gotcha, SGTM |
It's also possible to do a combination of min_version > 3.8 / exclude_implementations = PyPY so we remove the pypy specificity when we drop python 3.8 support later on. |
This comment has been minimized.
This comment has been minimized.
How would that work? |
A file with everything py39.py: min_version = 3.9 Edit: Or just the one problematic line in the py38 files Noisy/duplicated in the short term but in the long run we're going to keep testing on pypy 3.9+ without having to think about it (we're going to delete the 38.py duplication when removing 3.8 support later on). |
β¦ve finer control
Created separate I think that should wrap up the comments; were you going to take a look at the excluded dunder method list, Pierre? |
π€ According to the primer, this change has no effect on the checked open source code. π€π This comment was generated for commit 4b8bc68 |
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.
LGTM, great first contribution π We'll release the change in 3.0
unnecessary-dunder-call
in lambdas
Type of Changes
Description
Closes #8769
Went through
constants.DUNDER_METHODS
to try to get a subset of dunders that fit into this exception and called itDUNDER_LAMBDA_EXCEPTIONS
. IIUC,constants.DUNDER_PROPERTIES
andconstants.EXTRA_DUNDER_METHODS
are used thepylint.extensions.dunder
module, and don't have corresponding operators/functions/methods anyways, so I ignored them.Looking forward to any feedback π