Fine-grained: Nested class causes extra triggers to fire

Abierto
#4,614 1 comentario 0 reacciones 0 asignados Ver en GitHub

Nadie ha tomado este issue todavía.

Evaluación

Dificultad
4/5
Tiempo estimado
3-5 días
Aptitud para principiantes
35/100
Tipo de issue
Error
Claridad
Necesita aclaración
Estado de actividad
Estancado
Stack tecnológico
python

Línea de trabajo

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.

Escrito por el modelo de indexación a partir del texto del issue.

Descripción

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.

Lenguaje dominante
Python
Estrellas
20.6k
Forks
3.3k
Merge medio
1 d 18 h
PR fusionados (30 d)
54

Guía de contribución

Abrir la guía de contribución

Primeros pasos

  1. Lee el issue completo y luego la guía de contribución del proyecto.
  2. Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
  3. Haz un fork del repositorio y trabaja en una rama.
  4. Abre un pull request que haga referencia al número del issue.

Más de python/mypy

Todos los issues de python/mypy

Issues similares

Más issues de Python

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.