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

Treat TypedDict (old-style) aliases as regular TypedDicts #18852

Merged

Conversation

sterliakov
Copy link
Collaborator

@sterliakov sterliakov commented Mar 29, 2025

Fixes #18692.

This PR makes mypy recognize old-style aliases to TypedDict types:

Alias = SomeTypedDict
ExplicitAlias: TypeAlias = SomeTypedDict

Still doesn't support generic no_args aliases:

from typing import Generic, TypedDict, TypeVar

_T = TypeVar("_T")

class TD(TypedDict, Generic[_T]):
    foo: _T

Alias = TD
# but works with
OtherAlias = TD[_T]

that's because no_args aliases are handled in code in several places and all of them expect such an alias to have Instance target.

This comment has been minimized.

This comment has been minimized.

@sterliakov sterliakov marked this pull request as ready for review March 29, 2025 23:20
@sterliakov
Copy link
Collaborator Author

This is rather important - stdlib stubs use TypedDict aliases (e.g. _SliceAttributes: typing_extensions.TypeAlias = _Attributes in ast.pyi where _Attributes is a generic TypedDict). We still don't support no_args aliases of generic TypedDict and NamedTuple types, they need to be parameterized with typevar explicitly. This may be a good future improvement, but now too many places require that no_args aliases have Instance as underlying type.

Copy link
Contributor

github-actions bot commented Apr 3, 2025

Diff from mypy_primer, showing the effect of this PR on open source code:

hydra-zen (https://github.com/mit-ll-responsible-ai/hydra-zen)
- src/hydra_zen/structured_configs/_implementations.py:2950: error: Argument 2 to "make_dataclass" has incompatible type "**StrictDataclassOptions"; expected "str"  [arg-type]
- src/hydra_zen/structured_configs/_implementations.py:2950: error: Argument 2 to "make_dataclass" has incompatible type "**StrictDataclassOptions"; expected "tuple[type, ...]"  [arg-type]
- src/hydra_zen/structured_configs/_implementations.py:2950: error: Argument 2 to "make_dataclass" has incompatible type "**StrictDataclassOptions"; expected "dict[str, Any] | None"  [arg-type]
- src/hydra_zen/structured_configs/_implementations.py:2950: error: Argument 2 to "make_dataclass" has incompatible type "**StrictDataclassOptions"; expected "bool"  [arg-type]
- src/hydra_zen/structured_configs/_implementations.py:2950: error: Argument 2 to "make_dataclass" has incompatible type "**StrictDataclassOptions"; expected "str | None"  [arg-type]
- src/hydra_zen/structured_configs/_implementations.py:3310: error: Argument 2 to "make_dataclass" has incompatible type "**StrictDataclassOptions"; expected "str"  [arg-type]
- src/hydra_zen/structured_configs/_implementations.py:3310: error: Argument 2 to "make_dataclass" has incompatible type "**StrictDataclassOptions"; expected "tuple[type, ...]"  [arg-type]
- src/hydra_zen/structured_configs/_implementations.py:3310: error: Argument 2 to "make_dataclass" has incompatible type "**StrictDataclassOptions"; expected "dict[str, Any] | None"  [arg-type]
- src/hydra_zen/structured_configs/_implementations.py:3310: error: Argument 2 to "make_dataclass" has incompatible type "**StrictDataclassOptions"; expected "bool"  [arg-type]
- src/hydra_zen/structured_configs/_implementations.py:3310: error: Argument 2 to "make_dataclass" has incompatible type "**StrictDataclassOptions"; expected "str | None"  [arg-type]

Copy link
Collaborator

@hauntsaninja hauntsaninja left a comment

Choose a reason for hiding this comment

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

Worth adding a test case for the PEP 695 alias?

@sterliakov
Copy link
Collaborator Author

@hauntsaninja We should already have a hard error whenever PEP695 type alias is used as a base class, is a test doing this specifically for TypedDict helpful?

@hauntsaninja
Copy link
Collaborator

Was a question, sounds like your answer is no! Thanks for the fix!

@hauntsaninja hauntsaninja merged commit 67b70ce into python:master Apr 5, 2025
18 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

typeddict check for multiple inheritance fails with type aliases
2 participants