Overridden `__iter__` with more specific item type is only respected in some contexts
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
Given a subclass C of Iterable[int] that more specifically implements def __iter__(self) -> Iterator[bool] (which is fine, since bool is a subclass of int), I would expect mypy to understand that iterating C() yields bools. And indeed it does understand this in some contexts, such as iter(C()) and for item in C(). But in other contexts, such as list(C()) and unpacking, it relies only on the base class Iterable[int] and discards the more specific information from __iter__.
To Reproduce
from typing import Iterable, Iterator
class C(Iterable[int]):
def __iter__(self) -> Iterator[bool]:
yield True
# these give bool, as expected
reveal_type(C().__iter__()) # Iterator[bool]
reveal_type(iter(C())) # Iterator[bool]
reveal_type([comp_item for comp_item in C()]) # list[bool]
for loop_item in C(): reveal_type(loop_item) # bool
# these unexpectedly give int
reveal_type(list(C())) # list[int]
[unpack_item] = C(); reveal_type(unpack_item) # int
[*unpack_items] = C(); reveal_type(unpack_items) # list[int]
# these unexpectedly give Any
reveal_type([*C()]) # list[Any] (#15747)
reveal_type(max(*C())) # Any
Expected Behavior
All items should be inferred as bool.
main.py:8: note: Revealed type is "typing.Iterator[builtins.bool]"
main.py:9: note: Revealed type is "typing.Iterator[builtins.bool]"
main.py:10: note: Revealed type is "builtins.list[builtins.bool]"
main.py:11: note: Revealed type is "builtins.bool"
main.py:14: note: Revealed type is "builtins.list[builtins.bool]"
main.py:15: note: Revealed type is "builtins.bool"
main.py:16: note: Revealed type is "builtins.list[builtins.bool]"
main.py:19: note: Revealed type is "builtins.list[builtins.bool]"
main.py:20: note: Revealed type is "builtins.bool"
Actual Behavior
The items are inconsistently inferred as bool, int, or Any, depending on the context.
main.py:8: note: Revealed type is "typing.Iterator[builtins.bool]"
main.py:9: note: Revealed type is "typing.Iterator[builtins.bool]"
main.py:10: note: Revealed type is "builtins.list[builtins.bool]"
main.py:11: note: Revealed type is "builtins.bool"
main.py:14: note: Revealed type is "builtins.list[builtins.int]"
main.py:15: note: Revealed type is "builtins.int"
main.py:16: note: Revealed type is "builtins.list[builtins.int]"
main.py:19: note: Revealed type is "builtins.list[Any]"
main.py:20: note: Revealed type is "Any"
One of the Any cases was previously reported:
- #14470
- #15747
Your Environment
- Mypy version used: 1.7.0
- Mypy command-line flags: none
- Mypy configuration options from
mypy.ini(and other config files): none - Python version used: 3.11
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 dell’issue con mypy e confronta i risultati di reveal_type per iter(C()), list(C()), l’unpacking e gli argomenti con asterisco. Traccia i punti di ingresso del controllo dei tipi per la costruzione di liste, l’unpacking e le chiamate con asterisco; il lavoro è completato quando tutti i tipi degli elementi elencati vengono inferiti coerentemente come bool, inclusi i casi Any segnalati in precedenza.
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à
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 35/100