Skip to content
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

Merged
merged 5 commits into from
Sep 24, 2023

Conversation

badsketch
Copy link
Contributor

Type of Changes

Type
βœ“ πŸ› Bug fix
✨ New feature
πŸ”¨ Refactoring
πŸ“œ Docs

Description

Closes #8769

Went through constants.DUNDER_METHODS to try to get a subset of dunders that fit into this exception and called it DUNDER_LAMBDA_EXCEPTIONS. IIUC, constants.DUNDER_PROPERTIES and constants.EXTRA_DUNDER_METHODS are used the pylint.extensions.dunder module, and don't have corresponding operators/functions/methods anyways, so I ignored them.

Looking forward to any feedback πŸ™‚

@codecov
Copy link

codecov bot commented Sep 13, 2023

Codecov Report

Merging #9034 (4b8bc68) into main (3f93f1e) will increase coverage by 0.00%.
Report is 8 commits behind head on main.
The diff coverage is 100.00%.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main    #9034   +/-   ##
=======================================
  Coverage   95.75%   95.75%           
=======================================
  Files         173      173           
  Lines       18652    18656    +4     
=======================================
+ Hits        17860    17864    +4     
  Misses        792      792           
Files Changed Coverage Ξ”
pylint/checkers/dunder_methods.py 100.00% <100.00%> (ΓΈ)
pylint/constants.py 100.00% <100.00%> (ΓΈ)

@github-actions

This comment has been minimized.

@Pierre-Sassoulas
Copy link
Member

Something's wrong with the primer, could you rebase on upstream/main please ?

@badsketch badsketch force-pushed the fix/8769-lambda-dunder branch from 74d1d9e to d7dd8c6 Compare September 13, 2023 21:57
@badsketch
Copy link
Contributor Author

Woops, done!

Also looking into the changelog portion in the docs.

@badsketch badsketch force-pushed the fix/8769-lambda-dunder branch from 9536285 to 259ee0d Compare September 17, 2023 01:27
@github-actions

This comment has been minimized.

Copy link
Member

@Pierre-Sassoulas Pierre-Sassoulas left a 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.


# C2801 rule exceptions as their corresponding function/method/operator
# is not valid python syntax in a lambda definition
DUNDER_LAMBDA_EXCEPTIONS = [
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
DUNDER_LAMBDA_EXCEPTIONS = [
UNNECESSARY_DUNDER_CALL_LAMBDA_EXCEPTIONS = [

@@ -0,0 +1,3 @@
Add special cases of dunder methods that should not trigger ``unnecessary-dunder-call`` if it's in a lambda definition.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

@Pierre-Sassoulas
Copy link
Member

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.

@badsketch
Copy link
Contributor Author

Thanks for the suggestions!

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.

I see the test fails for pypy3.8, but succeeds for pypy3.9. I looked into test options like exclude_implementations which only supports "PyPy" as a whole. If there's no way to specify which version of PyPy, I'm guessing our only option is to exclude PyPy entirely for this functional test file? If we try to do two separate files, the file for pypy would pass for pypy3.8, but now fails for pypy3.9. Could I be mistaken?

@staticmethod
def is_lambda_rule_exception(ancestor: nodes.NodeNG, node: nodes.NodeNG) -> bool:
return (
isinstance(ancestor, nodes.Lambda)
Copy link
Member

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.

Copy link
Member

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.)

@jacobtylerwalls
Copy link
Member

I see the test fails for pypy3.8, but succeeds for pypy3.9. I looked into test options like exclude_implementations which only supports "PyPy" as a whole. If there's no way to specify which version of PyPy, I'm guessing our only option is to exclude PyPy entirely for this functional test file? If we try to do two separate files, the file for pypy would pass for pypy3.8, but now fails for pypy3.9. Could I be mistaken?

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.

@badsketch badsketch force-pushed the fix/8769-lambda-dunder branch from 259ee0d to 47123c0 Compare September 18, 2023 03:36
@badsketch
Copy link
Contributor Author

Gotcha, SGTM

@Pierre-Sassoulas
Copy link
Member

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.

@github-actions

This comment has been minimized.

@jacobtylerwalls
Copy link
Member

How would that work?

@Pierre-Sassoulas
Copy link
Member

Pierre-Sassoulas commented Sep 18, 2023

A file with everything py39.py: min_version = 3.9
A file with everything py38.py : max_version = 3.8, exclude_implementations = PyPY
A file with everything py38_pypy.py : max_version = 3.8, exclude_implementations = CPython

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).

@badsketch
Copy link
Contributor Author

Created separate .py/.txt/.rc files for each version as suggested. Took me a surprisingly long time to get pypy38 set up so I could generate the output. πŸ˜“

I think that should wrap up the comments; were you going to take a look at the excluded dunder method list, Pierre?

@github-actions
Copy link
Contributor

πŸ€– According to the primer, this change has no effect on the checked open source code. πŸ€–πŸŽ‰

This comment was generated for commit 4b8bc68

Copy link
Member

@Pierre-Sassoulas Pierre-Sassoulas left a 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

@Pierre-Sassoulas Pierre-Sassoulas merged commit 8231e06 into pylint-dev:main Sep 24, 2023
@Pierre-Sassoulas Pierre-Sassoulas changed the title Fix C2801 special cases in lambda Fix false positives for unnecessary-dunder-call in lambdas Sep 24, 2023
@Pierre-Sassoulas Pierre-Sassoulas modified the milestones: 3.0.0b1, 3.0.0a8 Sep 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

C2801 False positive when __setitem__ appears in a lambda
3 participants