Fine-grained: Nested class causes extra triggers to fire

オープン
#4,614 コメント 1 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
4/5
見積もり時間
3〜5日
初心者へのやさしさ
35/100
issue の種類
バグ
明瞭さ
説明が足りない
活発さ
停滞
技術スタック
python

調査の方向性

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.

索引モデルが issue の本文から書いたものです。

説明

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.

主要言語
Python
スター
20.6k
フォーク
3.3k
平均マージ
1日 18時間
マージ済み PR(30日)
54

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

python/mypy のほかの issue

python/mypy の issue をすべて見る

似ている issue

Python の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。