[2.0 regression] Bad result from heuristic non-narrowing of type[T]
Aperta
Nessuno ha ancora preso questa issue.
bug
topic-type-narrowing
- Lingua principale
- Python
- Stelle
- 20.6k
- Fork
- 3.3k
- Metriche di merge delle PR
- Metriche PR in attesa
Descrizione
Bug Report
(A clear and concise description of what the bug is.)
To Reproduce
from math import isnan
from typing import TypeVar
V = TypeVar("V")
def assert_scalar_equal(s1: V, s2: V, /) -> None:
assert type(s1) is type(s2)
if type(s1) is float and type(s2) is float and isnan(s2):
assert isnan(s1)
else:
assert s1 == s2
Expected Behavior
This snippet should type check.
Actual Behavior
mypy.ini: No [mypy] section in config file
t.py:9: error: Argument 1 to "isnan" has incompatible type "V"; expected "SupportsFloat | SupportsIndex" [arg-type]
t.py:10: error: Argument 1 to "isnan" has incompatible type "V"; expected "SupportsFloat | SupportsIndex" [arg-type]
Found 2 errors in 1 file (checked 1 source file)
Even more minimal reprod:
from math import isnan
from typing import TypeVar
V = TypeVar("V")
def foo(s1: V, /) -> None:
if type(s1) is float:
assert isnan(s1)
mypy.ini: No [mypy] section in config file
t.py:9: error: Argument 1 to "isnan" has incompatible type "V"; expected "SupportsFloat | SupportsIndex" [arg-type]
Found 1 error in 1 file (checked 1 source file)
Your Environment
- Mypy version used: 2.0.0 or 2.1.0
- Mypy command-line flags: None
- Mypy configuration options from
mypy.ini(and other config files): None - Python version used: tested 3.11.14 and 3.14.6
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia eseguendo la riproduzione minima t.py con mypy 2.0.0 o 2.1.0 e analizza il comportamento del restringimento dei tipi dopo type(s1) is float. Confrontalo con il restringimento previsto per isnan; il lavoro è completato quando entrambi gli snippet forniti superano il controllo dei tipi senza gli errori arg-type segnalati.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- python
- Ambito
- devtools
- Tipo di issue
- Bug
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Tranquilla
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 55/100