An instance of a final class should be treated as satisfying a TypeVar bound to it, after being narrowed
Nessuno ha ancora preso questa issue.
- Lingua principale
- Python
- Stelle
- 20.6k
- Fork
- 3.3k
- Metriche di merge delle PR
- Metriche PR in attesa
Descrizione
Bug Report
See title, I think this is the cause of the remaining issue for https://github.com/python/mypy/issues/9424. I think this is a followup to https://github.com/python/mypy/pull/19183.
To Reproduce
from typing import TypeVar, final
@final
class A:
pass
U = TypeVar('U', bound=A | int)
def f(u: U) -> U:
if isinstance(u, A):
return A()
else:
return u
Expected Behavior
No errors
Actual Behavior
There's an error:
main.py:11: error: Incompatible return value type (got "A", expected "U") [return-value]
Found 1 error in 1 file (checked 1 source file)
Your Environment
Reproduced on mypy play.
- Mypy version used: v1.16
- Mypy command-line flags: N/A
- Mypy configuration options from
mypy.ini(and other config files): N/A - Python version used: 3.12
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 l’esempio Python fornito con mypy v1.16, usando il mypy playground o un checkout locale. Esamina come il narrowing di un’istanza della classe finale A interagisce con il TypeVar U vincolato a A | int. Il lavoro è completato quando l’esempio supera il controllo dei tipi senza l’errore relativo a un valore restituito incompatibile.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- python
- Ambito
- compilers
- Tipo di issue
- Bug
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 45/100