Conversation
sterliakov
reviewed
May 23, 2025
CHANGELOG.md
Outdated
| * `dmypy suggest` can now suggest through contextmanager-based decorators (Anthony Sottile, PR [18948](https://github.com/python/mypy/pull/18948)) | ||
| * Fix `__r<magic_methods>__` being used under the same `__<magic_method>__` hook (Arnav Jain, PR [18995](https://github.com/python/mypy/pull/18995)) | ||
| * Prioritize `.pyi` from `-stubs` packages over bundled `.pyi` (Joren Hammudoglu, PR [19001](https://github.com/python/mypy/pull/19001)) | ||
| * Do not narrow types to Never with binder (Ivan Levkivskyi, PR [18972](https://github.com/python/mypy/pull/18972)) |
CHANGELOG.md
Outdated
| * Fix PEP 695 type alias with a mix of type arguments (PEP 696) (Marc Mueller, PR [18919](https://github.com/python/mypy/pull/18919)) | ||
| * Allow deeper recursion in mypy daemon, better error reporting (Carter Dodd, PR [17707](https://github.com/python/mypy/pull/17707)) | ||
| * Fix swapped errors for frozen/non-frozen dataclass inheritance (Nazrawi Demeke, PR [18918](https://github.com/python/mypy/pull/18918)) | ||
| * Traverse module ancestors when traversing reachable graph nodes during dmypy update (Stanislav Terliakov, PR [18906](https://github.com/python/mypy/pull/18906)) |
Collaborator
There was a problem hiding this comment.
Belongs to "Fixes to Crashes"?
jorenham
reviewed
May 27, 2025
CHANGELOG.md
Outdated
|
|
||
| @abstractmethod | ||
| @overload | ||
| deef foo(self, x: str) -> str: ... |
Contributor
There was a problem hiding this comment.
Suggested change
| deef foo(self, x: str) -> str: ... | |
| def foo(self, x: str) -> str: ... |
Closed
ilevkivskyi
approved these changes
May 27, 2025
CHANGELOG.md
Outdated
| * Reject duplicate `ParamSpec.{args,kwargs}` at call site (Stanislav Terliakov, PR [18854](https://github.com/python/mypy/pull/18854)) | ||
| * Make detection of enum members more consistent (sobolevn, PR [18675](https://github.com/python/mypy/pull/18675)) | ||
| * Admit that `**kwargs` mapping subtypes may have no direct type parameters (Stanislav Terliakov, PR [18850](https://github.com/python/mypy/pull/18850)) | ||
| * Drop don't suggest `types-setuptools for `pkg_resources` (Shantanu, PR [18840](https://github.com/python/mypy/pull/18840)) |
Member
There was a problem hiding this comment.
This sentence doesn't parse? It should be either "Drop" or "don't suggest" but not both.
Member
There was a problem hiding this comment.
Also something wrong with backticks here, I think there is one missing after "setuptools".
Collaborator
There was a problem hiding this comment.
And missing backtick too late...
cdce8p
pushed a commit
to cdce8p/mypy
that referenced
this pull request
May 31, 2025
Related to python#18739.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Related to #18739.