mypy doesn't take value restrictions into account when solving type variables
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Python
- Sterne
- 20.6k
- Forks
- 3.3k
- PR-Merge-Kennzahlen
- PR-Kennzahlen ausstehend
Beschreibung
This came up in https://github.com/python/typeshed/pull/6762
from typing import Any, TypeVar, Union
T = TypeVar("T")
V = TypeVar("V", str, bytes)
def check_t(x: T | list[T]) -> T: ...
def check_v(x: V | list[V]) -> V: ...
x_str: str
x_list_any: list[Any]
x_str_list_any: str | list[Any]
# mypy does the correct thing here
reveal_type(check_t(x_str)) # str
reveal_type(check_t(x_list_any)) # list[Any] | Any
reveal_type(check_t(x_str_list_any)) # str | list[Any] | Any
reveal_type(check_v(x_str)) # str
# but maybe not here
# E: Value of type variable "V" of "check_v" cannot be "Union[List[Any], Any]"
# N: Revealed type is "Union[builtins.list[Any], Any]"
reveal_type(check_v(x_list_any))
# E: Value of type variable "V" of "check_v" cannot be "Union[str, List[Any], Any]"
# N: Revealed type is "Union[builtins.str, builtins.list[Any], Any]"
reveal_type(check_v(x_str_list_any))
Looking at the output, my guess is that mypy isn't taking value restrictions into account when solving constraints and only using value restriction as a check later. That is, list[Any] cannot match the T part of T | list[T] because it would violate the value restriction.
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
Beginne damit, die bereitgestellten Beispiele mit check_t, check_v, Any und eingeschränkten TypeVars zu reproduzieren, und verfolge dann mypy's Lösung von Typvariablen-Bedingungen sowie die anschließende Prüfung von Werteinschränkungen. Als erledigt gilt die Aufgabe, wenn die Aufrufe mit list[Any] und str | list[Any] mit passenden aufgedeckten Typen akzeptiert werden, ohne die gemeldeten value-of-type-variable-Fehler.
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