False positive in case of custom __setattr__ that changes the type of the attribute
オープン
まだ誰も着手していません。
feature
- 主要言語
- Python
- スター
- 20.6k
- フォーク
- 3.3k
- PR マージ指標
- PR 指標を取得中
説明
Bug Report
I have a class with a custom __setattr__(self, attr, value:TYPE). This method converts value to another type.
I am getting false positives, since mypy assumes that for each particular TYPE, type(getattr(obj, attr)) == TYPE.
To Reproduce
Minimal code example:
from typing import *
class Context:
def __setattr__(self, attr:str, value:Any):
super().__setattr__(attr, str(value))
ctx = Context()
ctx.a = 10
print(len(ctx.a))
Actual Behavior
mypy output
....py:9: error: "Context" has no attribute "a"
....py:9: error: Argument 1 to "len" has incompatible type "int"; expected "Sized"
I would like to tell mypy that for this class, it mustn't assume that type(getattr(ctx, "a")) == type(10) .
Your Environment
- mypy 0.961 (compiled: yes) on Ubuntu Linux (Jupyter Docker image)
- Python 3.8.10 (Anaconda)
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず最小限の Context 例を mypy で実行し、報告されたエラーを issue に記載された期待される動作と比較します。カスタム setattr と推論された属性について、型チェックの経路を追跡します。完了の条件は、例で変換された属性型に対する誤検出が発生しなくなることです。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- devtools
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100