Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork3.1k
Stubtest: verify stub methods or properties are decorated with@final if they are decorated with@final at runtime#14951
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes from1 commit
Commits
Show all changes
7 commits Select commitHold shift + click to select a range
3d4c8ef Stubtest: verify stub methods or properties are decorated with `@fina…
AlexWaygoodb749c90 More tests
AlexWaygood28b43f3 Refactor to be more principled
AlexWaygood329c1c8 Also support the other order of stacking `@final`
AlexWaygoodeb5d0e1 Blacken, plus more comments
AlexWaygoodf41630f Fix behaviour change in `_verify_static_class_method`; improve comment
AlexWaygood9c4e5ae Merge branch 'master' into stubtest-final-methods
AlexWaygoodFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
Also support the other order of stacking
@final- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
commit329c1c8e8645cc83f04d08ed23c2cc901a67b44a
There are no files selected for viewing
16 changes: 12 additions & 4 deletionsmypy/stubtest.py
This file contains hidden or 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
44 changes: 36 additions & 8 deletionsmypy/test/teststubtest.py
This file contains hidden or 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 |
|---|---|---|
| @@ -1311,43 +1311,71 @@ def foo(): pass | ||
| yield Case( | ||
| stub=""" | ||
| class H: | ||
| @staticmethod | ||
| def foo() -> None: ... | ||
| """, | ||
| runtime=""" | ||
| class H: | ||
| @staticmethod | ||
| @final | ||
| def foo(): pass | ||
| """, | ||
| error="H.foo", | ||
| ) | ||
| yield Case( | ||
| stub=""" | ||
| class I: | ||
| @classmethod | ||
| def foo(cls) -> None: ... | ||
| """, | ||
| runtime=""" | ||
| classI: | ||
| @final | ||
| @classmethod | ||
| def foo(cls): pass | ||
| """, | ||
| error="I.foo", | ||
| ) | ||
| yield Case( | ||
| stub=""" | ||
| class J: | ||
| @classmethod | ||
| def foo(cls) -> None: ... | ||
| """, | ||
| runtime=""" | ||
| class J: | ||
| @classmethod | ||
| @final | ||
| def foo(cls): pass | ||
| """, | ||
| error="J.foo", | ||
| ) | ||
| yield Case( | ||
| stub=""" | ||
| class K: | ||
| @property | ||
| def foo(self) -> int: ... | ||
| """, | ||
| runtime=""" | ||
| classK: | ||
| @property | ||
| @final | ||
AlexWaygood marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| def foo(self): return 42 | ||
| """, | ||
| error="K.foo", | ||
| ) | ||
| yield Case( | ||
| stub=""" | ||
| classL: | ||
| def foo(self, obj: int) -> int: ... | ||
| """, | ||
| runtime=""" | ||
| classL: | ||
| @final | ||
| @functools.lru_cache() | ||
| def foo(self, obj): return obj * 2 | ||
AlexWaygood marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| """, | ||
| error="L.foo", | ||
| ) | ||
| @collect_cases | ||
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.