Fine-grained: Nested class causes extra triggers to fire

Aperta
#4,614 1 commento 0 reazioni 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

Valutazione

Difficoltà
4/5
Tempo stimato
3-5 giorni
Idoneità per principianti
35/100
Tipo di issue
Bug
Chiarezza
Da chiarire
Stato di attività
Ferma
Stack tecnologico
python

Direzione di ricerca

Start in mypy/test/testfinegrained.py with testNestedClassLeakingFromMethod and reproduce the shown debug output. Trace how nested class names containing line numbers produce triggers for both old and new names. Done means the test no longer reports unnecessary triggers while preserving the incompatible-assignment error.

Scritto dal modello di indicizzazione a partire dal testo della issue.

Descrizione

bug priority-2-low topic-fine-grained-incremental

This test case trigger too many triggers due to nested classes:

[case testNestedClassLeakingFromMethod]
import a

def f(o: a.A) -> None:
    o.b.x = 1

[file a.py]
class A:
    def f(self) -> None:
        class B:
            x: int
        self.b = B()

    def g(self) -> None:
        class B: pass
        self.c = B()

[file a.py.2]
class A:
    # extra line
    def f(self) -> None:
        class B:
            x: str
        self.b = B()

    def g(self) -> None:
        class B: pass
        self.c = B()
[out]
==
main:4: error: Incompatible types in assignment (expression has type "int", variable has type "str")

Here's the debug output:

mypy/test/testfinegrained.py ==== update 'a' ====
--- update single 'a' ---
triggered: ['<a.A.b>', '<a.A.c>', '<a.B@3>', '<a.B@4>', '<a.B@8>', '<a.B@9>']
process __main__.f
triggered: []

Note that since the line number is included in the class names, moving the class to another line changes the name and causes triggers for both the previous and new name to fire.

Not sure what's the best way to deal with this. If nested classes that leak from methods are rare enough this might not be a major problem.

Lingua principale
Python
Stelle
20.6k
Fork
3.3k
Merge medio
1g 18h
PR unite (30g)
54

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Altre issue di python/mypy

Tutte le issue di python/mypy

Issue simili

Altre issue su Python

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.