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

Dataclass transform should ignore TypeAlias variables #91322

Open
thomkeh mannequin opened this issue Mar 30, 2022 · 5 comments
Open

Dataclass transform should ignore TypeAlias variables #91322

thomkeh mannequin opened this issue Mar 30, 2022 · 5 comments
Labels
3.9 only security fixes 3.10 only security fixes 3.11 only security fixes stdlib Python modules in the Lib dir topic-dataclasses topic-typing type-bug An unexpected behavior, bug, or error

Comments

@thomkeh
Copy link
Mannequin

thomkeh mannequin commented Mar 30, 2022

BPO 47166
Nosy @ericvsmith, @JelleZijlstra, @AlexWaygood, @GBeauregard, @thomkeh

Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

Show more details

GitHub fields:

assignee = None
closed_at = None
created_at = <Date 2022-03-30.14:49:32.604>
labels = ['type-bug', '3.8', '3.9', '3.10', '3.11', '3.7', 'library']
title = 'Dataclass transform should ignore TypeAlias variables'
updated_at = <Date 2022-04-06.22:47:22.436>
user = 'https://github.com/thomkeh'

bugs.python.org fields:

activity = <Date 2022-04-06.22:47:22.436>
actor = 'thomkeh'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-03-30.14:49:32.604>
creator = 'thomkeh'
dependencies = []
files = []
hgrepos = []
issue_num = 47166
keywords = []
message_count = 5.0
messages = ['416368', '416414', '416426', '416428', '416903']
nosy_count = 5.0
nosy_names = ['eric.smith', 'JelleZijlstra', 'AlexWaygood', 'GBeauregard', 'thomkeh']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue47166'
versions = ['Python 3.7', 'Python 3.8', 'Python 3.9', 'Python 3.10', 'Python 3.11']

@thomkeh
Copy link
Mannequin Author

thomkeh mannequin commented Mar 30, 2022

The dataclass transformation ignores attributes that are annotated as ClassVar. I think it should also ignore attributes that are annotated as TypeAlias.

Specifically, I have this usecase in mind:

class RunMode(Enum):
    release = auto()
    debug = auto()

@dataclass
class Run:
    Mode: TypeAlias = RunMode
    mode: Mode = Mode.release

@thomkeh thomkeh mannequin added 3.7 (EOL) end of life 3.8 only security fixes 3.9 only security fixes 3.10 only security fixes 3.11 only security fixes stdlib Python modules in the Lib dir type-bug An unexpected behavior, bug, or error labels Mar 30, 2022
@JelleZijlstra
Copy link
Member

From a typing perspective this is reasonable. See this thread about type aliases in class scopes: https://mail.python.org/archives/list/typing-sig@python.org/thread/CGOO7GPPECGMLFDUDXSSXTRADI4BXYCS/

However, it's a niche use case and we could decide that we don't want to further complicate the annotation parsing in dataclasses.py.

@AlexWaygood
Copy link
Member

I think implementing this would add complexity to the code in dataclasses.py (though Eric's the expert!).

For your use case, is it essential that the type alias declaration be inside the class scope? Would it be possible for you to simply have the alias declaration in the global scope instead?

@ericvsmith
Copy link
Member

Same question as Alex: what does the TypeAlias being inside the class offer that being at module level doesn't?

@thomkeh
Copy link
Mannequin Author

thomkeh mannequin commented Apr 6, 2022

There is of course no hard reason for not using the global scope. I just often have enums (or other types) that are very closely linked to one class. And it makes sense to me then to have a TypeAlias in that class so that I don't have to import the enum separately.

For normal classes, the nested TypeAlias works completely fine in the type checkers I tested (pyright and mypy). It's just dataclasses that are the problem.

But I see now that there is a general wish to keep the implementation of dataclass simple, which I can understand.

@ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
@AlexWaygood AlexWaygood added topic-typing and removed 3.8 only security fixes 3.7 (EOL) end of life labels Apr 13, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3.9 only security fixes 3.10 only security fixes 3.11 only security fixes stdlib Python modules in the Lib dir topic-dataclasses topic-typing type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

No branches or pull requests

4 participants