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

Support PEP 681 (dataclass_transform) #14293

Open
NeilGirdhar opened this issue Dec 14, 2022 · 17 comments
Open

Support PEP 681 (dataclass_transform) #14293

NeilGirdhar opened this issue Dec 14, 2022 · 17 comments

Comments

@NeilGirdhar
Copy link
Contributor

NeilGirdhar commented Dec 14, 2022

PEP 681 introduces a new decorator function in the typing module named dataclass_transform. This was added to Python 3.11.

See #5383 for a related issue that this would solve. See #12840 for MyPy's Python 3.11 issues.

@NeilGirdhar
Copy link
Contributor Author

It would be really nice to support frozen_default, which is not part of the PEP, but was added to CPython (python/cpython#99957) and typing_extensions (python/typing_extensions#101).

@tmke8
Copy link
Contributor

tmke8 commented Dec 14, 2022

Python 3.11 (to be released in one year)

Hm? Python 3.11 has already been released.

@NeilGirdhar
Copy link
Contributor Author

@thomkeh Thanks for catching my mistake, edited 😄

@hauntsaninja
Copy link
Collaborator

Just to keep this issue up to date:

mypy 1.0 shipped with extremely rudimentary support for dataclass_transform decorator with no parameters passed. mypy master has increasingly better support for PEP 681.

@NeilGirdhar
Copy link
Contributor Author

@wesleywright Looks like this complete on master? If so, I'll close this issue. Please feel free to tick this off the Python 3.11 issue.

@wesleywright
Copy link
Collaborator

@NeilGirdhar Yes, as far as I'm aware we're feature complete on master now.

@tmke8
Copy link
Contributor

tmke8 commented Mar 5, 2023

Does the implementation support taking into account overloads to determine whether a field will be present in the __init__? The master version in mypy play doesn't seem to support it: https://mypy-play.net/?mypy=master&python=3.11&gist=eec5f42639277ba0988d496cee03d3d4

The example is from this section of the PEP: https://peps.python.org/pep-0681/#field-specifier-parameters

@AlexWaygood

This comment was marked as outdated.

@AlexWaygood

This comment was marked as outdated.

@AlexWaygood
Copy link
Member

AlexWaygood commented Mar 5, 2023

Re-reading the PEP, it looks like the use of overloads for field specifiers isn't quite fully implemented. We currently have this behaviour on mypy master:

import typing
from typing import overload, Optional, Any, Callable, Literal, Type, TypeVar
# Library code (within type stub or inline)
# In this library, passing a resolver means that init must be False,
# and the overload with Literal[False] enforces that.
@overload
def model_field(
        *,
        default: Optional[Any] = ...,
        resolver: Callable[[], Any],
        init: Literal[False] = False,
    ) -> Any: ...

@overload
def model_field(
        *,
        default: Optional[Any] = ...,
        resolver: None = None,
        init: bool = True,
    ) -> Any: ...
def model_field(
    *,
    default: Optional[Any] = ...,
    resolver: Optional[Callable[[], Any]] = ...,
    init: bool = ...,
) -> Any: ...

_T = TypeVar("_T")
@typing.dataclass_transform(
    kw_only_default=True,
    field_specifiers=(model_field, ))
def create_model(
    *,
    init: bool = True,
) -> Callable[[Type[_T]], Type[_T]]: ...

# Code that imports this library:
@create_model(init=True)
class CustomerModel:
    id: int = model_field(resolver=lambda : 0)
    name: str
    
cm = CustomerModel(name="John")

Mypy output:

test.py:32: error: Missing return statement  [empty-body]
test.py:43: error: Missing named argument "id" for "CustomerModel"  [call-arg]
Found 2 errors in 1 file (checked 1 source file)

The second error is a false positive: mypy should be able to infer that there's no "id" argument in the __init__ method for CustomerModel, due to the fact that the resolver argument was specified for model_field for the id attribute.

@AlexWaygood AlexWaygood reopened this Mar 5, 2023
@wesleywright
Copy link
Collaborator

Opened #14870 to support the implicit defaults for the init parameter, though I'm not sure how to plumb the correct overload in, so it only works for non-overloads for now. Hopefully that should be easy to fix and the feature will be properly supported.

@wesleywright
Copy link
Collaborator

@tmke8 are you aware of any specific use cases for such overloads in the wild?

@tmke8
Copy link
Contributor

tmke8 commented Mar 15, 2023

@wesleywright no, I just read about them in the PEP

@AlexWaygood
Copy link
Member

AlexWaygood commented Mar 15, 2023

@tmke8 are you aware of any specific use cases for such overloads in the wild?

You could check with the pydantic and SQLAlchemy folks; they seem to be heavy users of dataclass_transform

@hauntsaninja
Copy link
Collaborator

You can see more context about the field specifier overloads in microsoft/pyright#1782 cc @patrick91

@tmke8
Copy link
Contributor

tmke8 commented Mar 15, 2023

More specific link: microsoft/pyright#1782 (comment)

@JukkaL
Copy link
Collaborator

JukkaL commented Mar 16, 2023

I suspect that full overload resolution in the dataclass plugin would require some changes to the plugin system, since during the main dataclass transform pass types aren't fully set up yet, and subtype checks can't be reliably used. I wonder if it would be sufficient to do "lightweight" overload resolution using only the argument counts and names and some simple type rules (e.g. matching None value to None type). This might unblock the currently known use cases while we figure out how to do this in a more general way.

A possible more general approach would to postpone the determination of the __init__ signature until just before type checking, when all types are fully set up. Even then it may be tricky to use the existing machinery to match overloads.

Yet another idea would be to generate the __init__ signature lazily during type checking. I think this could also hit some difficulties, but I'm not sure.

jsirois added a commit to jsirois/lift that referenced this issue Oct 3, 2023
This also updates all dependencies and fixes the minor fallout of four
MyPy typecheck issues (all instances of no support yet for
@dataclass_transform: python/mypy#14293) and
one Sphinx issue with the custom directive systems use of markdown.
jsirois added a commit to jsirois/lift that referenced this issue Oct 3, 2023
This also updates all dependencies and fixes the minor fallout of four
MyPy typecheck issues (all instances of no support yet for
@dataclass_transform: python/mypy#14293) and
one Sphinx issue with the custom directive systems use of markdown.
jsirois added a commit to a-scie/lift that referenced this issue Oct 3, 2023
This also updates all dependencies and fixes the minor fallout of four
MyPy typecheck issues (all instances of no support yet for
@dataclass_transform: python/mypy#14293) and
one Sphinx issue with the custom directive system's use of markdown.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

7 participants