-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Type checking of class decorators #4544
Merged
Merged
Changes from 1 commit
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4115,7 +4115,7 @@ def f() -> type: return M | |
class C1(six.with_metaclass(M), object): pass # E: Invalid base class | ||
class C2(C1, six.with_metaclass(M)): pass # E: Invalid base class | ||
class C3(six.with_metaclass(A)): pass # E: Metaclasses not inheriting from 'type' are not supported | ||
@six.add_metaclass(A) # E: Metaclasses not inheriting from 'type' are not supported | ||
@six.add_metaclass(A) # E: Metaclasses not inheriting from 'type' are not supported # E: Argument 1 to "add_metaclass" has incompatible type "Type[A]"; expected "Type[type]" | ||
class D3(A): pass | ||
class C4(six.with_metaclass(M), metaclass=M): pass # E: Multiple metaclass definitions | ||
@six.add_metaclass(M) # E: Multiple metaclass definitions | ||
|
@@ -4223,3 +4223,12 @@ class C(Any): | |
reveal_type(self.bar().__name__) # E: Revealed type is 'builtins.str' | ||
[builtins fixtures/type.pyi] | ||
[out] | ||
|
||
[case testClassDecoratorIsTypeChecked] | ||
from typing import Callable | ||
def decorate(x: int) -> Callable[[type], type]: # N: "decorate" defined here | ||
... | ||
|
||
@decorate(y=17) # E: Unexpected keyword argument "y" for "decorate" | ||
class A: | ||
pass | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The PR is trivial, but I would add few more test cases for various kinds of errors, like non-existing name/attribute, calling non-callable, too many args, forward reference in a decorator type, etc. |
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.
One more thing: Add
\
somewhere here and format it nicely with a newline, like this: