-
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
[pylint
] Implement PLE0302 unexpected-special-method-signature
#4075
Merged
charliermarsh
merged 5 commits into
astral-sh:main
from
mccullocht:unexpected-special-method-signature
Apr 25, 2023
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
crates/ruff/resources/test/fixtures/pylint/unexpected_special_method_signature.py
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
class TestClass: | ||
def __bool__(self): | ||
... | ||
|
||
def __bool__(self, x): # too many mandatory args | ||
... | ||
|
||
def __bool__(self, x=1): # additional optional args OK | ||
... | ||
|
||
def __bool__(self, *args): # varargs OK | ||
... | ||
|
||
def __bool__(): # ignored; should be caughty by E0211/N805 | ||
... | ||
|
||
@staticmethod | ||
def __bool__(): | ||
... | ||
|
||
@staticmethod | ||
def __bool__(x): # too many mandatory args | ||
... | ||
|
||
@staticmethod | ||
def __bool__(x=1): # additional optional args OK | ||
... | ||
|
||
def __eq__(self, other): # multiple args | ||
... | ||
|
||
def __eq__(self, other=1): # expected arg is optional | ||
... | ||
|
||
def __eq__(self): # too few mandatory args | ||
... | ||
|
||
def __eq__(self, other, other_other): # too many mandatory args | ||
... | ||
|
||
def __round__(self): # allow zero additional args. | ||
... | ||
|
||
def __round__(self, x): # allow one additional args. | ||
... | ||
|
||
def __round__(self, x, y): # disallow 2 args | ||
... | ||
|
||
def __round__(self, x, y, z=2): # disallow 3 args even when one is optional | ||
... |
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
150 changes: 150 additions & 0 deletions
150
crates/ruff/src/rules/pylint/rules/unexpected_special_method_signature.rs
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 |
---|---|---|
@@ -0,0 +1,150 @@ | ||
use std::cmp::Ordering; | ||
|
||
use rustpython_parser::ast::{Arguments, Expr, Stmt}; | ||
|
||
use ruff_diagnostics::{Diagnostic, Violation}; | ||
use ruff_macros::{derive_message_formats, violation}; | ||
use ruff_python_ast::helpers::identifier_range; | ||
use ruff_python_ast::source_code::Locator; | ||
use ruff_python_semantic::analyze::visibility::is_staticmethod; | ||
use ruff_python_semantic::scope::ScopeKind; | ||
|
||
use crate::checkers::ast::Checker; | ||
|
||
#[derive(Debug, Eq, PartialEq)] | ||
pub enum ExpectedParams { | ||
Fixed(usize), | ||
Range(usize, usize), | ||
} | ||
|
||
impl ExpectedParams { | ||
fn from_method(name: &str, is_staticmethod: bool) -> Option<ExpectedParams> { | ||
let p = match name { | ||
"__del__" | "__repr__" | "__str__" | "__bytes__" | "__hash__" | "__bool__" | ||
| "__dir__" | "__len__" | "__length_hint__" | "__iter__" | "__reversed__" | ||
| "__neg__" | "__pos__" | "__abs__" | "__invert__" | "__complex__" | "__int__" | ||
| "__float__" | "__index__" | "__trunc__" | "__floor__" | "__ceil__" | "__enter__" | ||
| "__aenter__" | "__getnewargs_ex__" | "__getnewargs__" | "__getstate__" | ||
| "__reduce__" | "__copy__" | "__unicode__" | "__nonzero__" | "__await__" | ||
| "__aiter__" | "__anext__" | "__fspath__" | "__subclasses__" => { | ||
Some(ExpectedParams::Fixed(0)) | ||
} | ||
"__format__" | "__lt__" | "__le__" | "__eq__" | "__ne__" | "__gt__" | "__ge__" | ||
| "__getattr__" | "__getattribute__" | "__delattr__" | "__delete__" | ||
| "__instancecheck__" | "__subclasscheck__" | "__getitem__" | "__missing__" | ||
| "__delitem__" | "__contains__" | "__add__" | "__sub__" | "__mul__" | ||
| "__truediv__" | "__floordiv__" | "__rfloordiv__" | "__mod__" | "__divmod__" | ||
| "__lshift__" | "__rshift__" | "__and__" | "__xor__" | "__or__" | "__radd__" | ||
| "__rsub__" | "__rmul__" | "__rtruediv__" | "__rmod__" | "__rdivmod__" | ||
| "__rpow__" | "__rlshift__" | "__rrshift__" | "__rand__" | "__rxor__" | "__ror__" | ||
| "__iadd__" | "__isub__" | "__imul__" | "__itruediv__" | "__ifloordiv__" | ||
| "__imod__" | "__ilshift__" | "__irshift__" | "__iand__" | "__ixor__" | "__ior__" | ||
| "__ipow__" | "__setstate__" | "__reduce_ex__" | "__deepcopy__" | "__cmp__" | ||
| "__matmul__" | "__rmatmul__" | "__imatmul__" | "__div__" => { | ||
Some(ExpectedParams::Fixed(1)) | ||
} | ||
"__setattr__" | "__get__" | "__set__" | "__setitem__" | "__set_name__" => { | ||
Some(ExpectedParams::Fixed(2)) | ||
} | ||
"__exit__" | "__aexit__" => Some(ExpectedParams::Fixed(3)), | ||
"__round__" => Some(ExpectedParams::Range(0, 1)), | ||
"__pow__" => Some(ExpectedParams::Range(1, 2)), | ||
_ => None, | ||
}?; | ||
|
||
Some(if is_staticmethod { | ||
p | ||
} else { | ||
match p { | ||
ExpectedParams::Fixed(n) => ExpectedParams::Fixed(n + 1), | ||
ExpectedParams::Range(min, max) => ExpectedParams::Range(min + 1, max + 1), | ||
} | ||
}) | ||
} | ||
|
||
fn message(&self) -> String { | ||
match self { | ||
ExpectedParams::Fixed(n) if *n == 1 => "1 parameter".to_string(), | ||
ExpectedParams::Fixed(n) => { | ||
format!("{} parameters", *n) | ||
} | ||
ExpectedParams::Range(min, max) => { | ||
format!("between {} and {} parameters", *min, *max) | ||
} | ||
} | ||
} | ||
} | ||
|
||
#[violation] | ||
pub struct UnexpectedSpecialMethodSignature { | ||
pub method_name: String, | ||
pub expected_params: ExpectedParams, | ||
pub actual_params: usize, | ||
} | ||
|
||
impl Violation for UnexpectedSpecialMethodSignature { | ||
#[derive_message_formats] | ||
fn message(&self) -> String { | ||
let verb = if self.actual_params > 1 { | ||
"were" | ||
} else { | ||
"was" | ||
}; | ||
format!( | ||
"The special method '{}' expects {}, {} {} given", | ||
self.method_name, | ||
self.expected_params.message(), | ||
self.actual_params, | ||
verb | ||
) | ||
} | ||
} | ||
|
||
/// PLE0302 | ||
pub fn unexpected_special_method_signature( | ||
checker: &mut Checker, | ||
stmt: &Stmt, | ||
name: &str, | ||
decorator_list: &[Expr], | ||
args: &Arguments, | ||
locator: &Locator, | ||
) { | ||
if !matches!(checker.ctx.scope().kind, ScopeKind::Class(_)) { | ||
return; | ||
} | ||
|
||
// Method has no parameter, will be caught by no-method-argument (E0211/N805). | ||
if args.args.is_empty() && args.vararg.is_none() { | ||
return; | ||
} | ||
|
||
let actual_params = args.args.len(); | ||
let optional_params = args.defaults.len(); | ||
let mandatory_params = actual_params - optional_params; | ||
|
||
let Some(expected_params) = ExpectedParams::from_method(name, is_staticmethod(&checker.ctx, decorator_list)) else { | ||
return; | ||
}; | ||
|
||
let emit = match expected_params { | ||
ExpectedParams::Range(min, max) => !(min..=max).contains(&actual_params), | ||
ExpectedParams::Fixed(expected) => match expected.cmp(&mandatory_params) { | ||
Ordering::Less => true, | ||
Ordering::Greater => { | ||
args.vararg.is_none() && optional_params < (expected - mandatory_params) | ||
} | ||
Ordering::Equal => false, | ||
}, | ||
}; | ||
|
||
if emit { | ||
checker.diagnostics.push(Diagnostic::new( | ||
UnexpectedSpecialMethodSignature { | ||
method_name: name.to_owned(), | ||
expected_params, | ||
actual_params, | ||
}, | ||
identifier_range(stmt, locator), | ||
)); | ||
} | ||
} |
57 changes: 57 additions & 0 deletions
57
...snapshots/ruff__rules__pylint__tests__PLE0302_unexpected_special_method_signature.py.snap
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
source: crates/ruff/src/rules/pylint/mod.rs | ||
--- | ||
unexpected_special_method_signature.py:5:9: PLE0302 The special method '__bool__' expects 1 parameter, 2 were given | ||
| | ||
5 | ... | ||
6 | | ||
7 | def __bool__(self, x): # too many mandatory args | ||
| ^^^^^^^^ PLE0302 | ||
8 | ... | ||
| | ||
|
||
unexpected_special_method_signature.py:22:9: PLE0302 The special method '__bool__' expects 0 parameters, 1 was given | ||
| | ||
22 | @staticmethod | ||
23 | def __bool__(x): # too many mandatory args | ||
| ^^^^^^^^ PLE0302 | ||
24 | ... | ||
| | ||
|
||
unexpected_special_method_signature.py:35:9: PLE0302 The special method '__eq__' expects 2 parameters, 1 was given | ||
| | ||
35 | ... | ||
36 | | ||
37 | def __eq__(self): # too few mandatory args | ||
| ^^^^^^ PLE0302 | ||
38 | ... | ||
| | ||
|
||
unexpected_special_method_signature.py:38:9: PLE0302 The special method '__eq__' expects 2 parameters, 3 were given | ||
| | ||
38 | ... | ||
39 | | ||
40 | def __eq__(self, other, other_other): # too many mandatory args | ||
| ^^^^^^ PLE0302 | ||
41 | ... | ||
| | ||
|
||
unexpected_special_method_signature.py:47:9: PLE0302 The special method '__round__' expects between 1 and 2 parameters, 3 were given | ||
| | ||
47 | ... | ||
48 | | ||
49 | def __round__(self, x, y): # disallow 2 args | ||
| ^^^^^^^^^ PLE0302 | ||
50 | ... | ||
| | ||
|
||
unexpected_special_method_signature.py:50:9: PLE0302 The special method '__round__' expects between 1 and 2 parameters, 4 were given | ||
| | ||
50 | ... | ||
51 | | ||
52 | def __round__(self, x, y, z=2): # disallow 3 args even when one is optional | ||
| ^^^^^^^^^ PLE0302 | ||
53 | ... | ||
| | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Does this need to take into account positional-only and/or keyword-only arguments? (Elsewhere, we have logic like
let defaults_start = args.posonlyargs.len() + args.args.len() - args.defaults.len();
andlet defaults_start = args.kwonlyargs.len() - args.kw_defaults.len();
to infer some similar information from function signatures.)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.
I patterned off of the pylint check which did not take posonly/kwonly args into account, but I can investigate further if you'd like. I don't think we need to consider kw-only arguments as it doesn't seem that any special methods have them according to the documentation.
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.
Perhaps we want to extend the check with a custom message when posonly/kwonly args are included, since that itself deviates from the expected signature, albeit in a different way?