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

Issue with TypeVar bound to a union and methods returning Self #18170

Open
slanzmich opened this issue Nov 19, 2024 · 0 comments
Open

Issue with TypeVar bound to a union and methods returning Self #18170

slanzmich opened this issue Nov 19, 2024 · 0 comments
Labels
bug mypy got something wrong topic-type-variables

Comments

@slanzmich
Copy link

Bug Report

Mypy does not properly identify the return type of a method returning Self when the object is annotated with a TypeVar bound to a Union.

To Reproduce

from typing import Self, TypeVar, reveal_type

class A:
    def clone(self) -> Self:
        return self

class B:
    def clone(self) -> Self:
        return self

class C(B):
    pass

AB = TypeVar("AB", bound=A | B)

def func1(x: AB) -> AB:
    return x

def func2(x: AB) -> AB:
    # This fails with
    #   error: Incompatible return value type (got "A | B", expected "AB")  [return-value]
    return x.clone()

reveal_type(func2(A()))  # Revealed type is "__main__.A"
reveal_type(func2(B()))  # Revealed type is "__main__.B"
reveal_type(func2(C()))  # Revealed type is "__main__.C"

https://mypy-play.net/?mypy=latest&python=3.12&gist=891e2571039d82531325537a75f334f0

mypy is actually pretty close. It finds that x.clone() returns A | B, but misses that whether A or B is returned is preserved.

Using constraints instead of a bound for the TypeVar, i.e.

AB = TypeVar("AB", A, B)

makes mypy happy. However, that does not support my use case, as reveal_type(func2(C())) finds __main__.B. I would like to avoid having to list all subclasses of A and B as constraints to the TypeVar.

Expected Behavior

no error

Actual Behavior

error: Incompatible return value type (got "A | B", expected "AB")  [return-value]

Your Environment

@slanzmich slanzmich added the bug mypy got something wrong label Nov 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug mypy got something wrong topic-type-variables
Projects
None yet
Development

No branches or pull requests

2 participants