Skip to content

Unclear when Join is picked vs Union in upcast operation. #19652

Description

@randolf-scholz

I noticed some rather erratic behavior when sometimes it picks union and other times the join.

fromtypingimportIterableclassA: ...
classB: ...
classC: ...
defupcast[T](arg: Iterable[T]) ->Iterable[T]: returnargdeftest_builtin(x: tuple[int, str, None]) ->None:
reveal_type(upcast(x)) # Iterable[str | int | None]deftest_custom(x: tuple[A, B, C]) ->None:
reveal_type(upcast(x)) # Iterable[object]deftest_mixed1(x: tuple[A, str, None]) ->None:
reveal_type(upcast(x)) # Iterable[str | A | None]deftest_mixed2(x: tuple[int, str, C]) ->None:
reveal_type(upcast(x)) # Iterable[object]

https://mypy-play.net/?mypy=latest&python=3.12&gist=833674a36174c4140a89645b609da8a9

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugmypy got something wrongtopic-join-v-unionUsing join vs. using unions

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions