Bug: overloads not matched when using `TypeVar` with `default` (where Pyright matches correctly)
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Python
- Sterne
- 20.6k
- Forks
- 3.3k
- PR-Merge-Kennzahlen
- PR-Kennzahlen ausstehend
Beschreibung
Bug Report
In the example below, mypy reveals the type to be Any, whereas Pyright correctly detects Bar
Note that replacing T | None with T makes Mypy also infer the type correctly
Noticed while working on pandas-stubs
To Reproduce
from typing import Any, Callable, Generic, Protocol, Self, overload, reveal_type
from typing_extensions import TypeVar
T = TypeVar("T", bound=str | int, default=Any)
class Foo(Generic[T]):
def __init__(self, t: T) -> None:
self.t = t
class Bar(Protocol):
@overload
def apply(self, f: Callable[..., Foo]) -> Self: ...
@overload
def apply(self, f: Callable[..., T | None]) -> Foo[T]: ...
def func() -> Foo:
return Foo(3)
def main(b: Bar) -> None:
reveal_type(b.apply(func))
https://mypy-play.net/?mypy=latest&python=3.12&gist=6df33ff32887ddfab4c1ae43edd62b2d
Expected Behavior
that reveal_type would show Bar (for reference, this is what Pyright does)
Actual Behavior
note: Revealed type is "Any"
Your Environment
- Mypy version used: 1.15.0
- Mypy command-line flags:
- Mypy configuration options from
mypy.ini(and other config files): - Python version used: 3.12
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Rechercherichtung
Das Issue nennt weder eine Quelldatei noch einen Test. Beginne mit der bereitgestellten Python-3.12-Reproduktion, führe sie mit mypy 1.15.0 aus und vergleiche das Ergebnis von reveal_type mit Pyright; abgeschlossen ist die Aufgabe, wenn die Überladung in diesem Fall zu Bar statt zu Any aufgelöst wird.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- python
- Bereich
- devtools
- Issue-Typ
- Bug
- Schwierigkeit
- 4/5
- Geschätzter Aufwand
- 3-5 Tage
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 42/100