A 'type only' module import should not count as importing a module
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
given:
my-app/
├─ package/
│ ├─ __init__.py
│ ├─ things.py
├─ entry.py
├─ mod.py
entry.py:
import mod
import package
mod.func(package.things.Thing())
mod.py:
def func(it):
...
In typeshed/bundled stubs: mod.pyi
from package.things import Thing
def func(it: Thing) -> None: ...
OR, if this is fake imported in the .py module: mod.py
from __future__ import annotations
from typing import TYPE_CHECKING
if TYPE_CHECKING
# do a type import so doesn't cause circular imports or slow down loading
from package.things import Thing
def func(it: Thing) -> None:
...
package.things.py
class Thing:
...
When mypy --strict entry.py is executed, no error is generated.
When python entry.py is run: AttributeError: module 'package' has no attribute 'things'
Mypy treats the 'type import' as importing package.things, when in reality it isn't. I understand this is consistent with what TYPE_CHECKING should do, but seems really sus if you ask me.
This more seriously affects typeshed, where all imports are fake and mypy will think all fakely imported modules are really imported.
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
Riproduci il comportamento con entry.py, mod.py, package/init.py e package/things.py utilizzando i comandi mypy --strict e Python forniti. Inizia tracciando come viene trattato l’import di soli tipi in mod.pyi o il blocco TYPE_CHECKING, quindi aggiungi un caso di regressione che dimostri che package.things non deve essere disponibile a runtime.
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
- Specificata chiaramente
- Idoneità per principianti
- 35/100