False positive when assigning bounded generic to union including the bound
オープン
まだ誰も着手していません。
bug
- 主要言語
- Python
- スター
- 20.6k
- フォーク
- 3.3k
- PR マージ指標
- PR 指標を取得中
説明
The following example is type-safe, but mypy reports 6 false positives:
- pyright playground: no errors
- pyrefly sandbox: no errors
- mypy playground: 6 false positives
- ty playground: 2 false positives (#2314)
def upcast(arg: int) -> int:
return arg
def test[X: int](items: list[X]) -> list[X]:
_a: list[int] = list(items) # ✅️
_b: list[int] = [*items] # ✅️
_c: list[int] = [x for x in items] # ✅️
_1: list[str] | list[int] = list(items) # ❌️
_2: list[int] | list[str] = list(items) # ❌️
_3: list[str] | list[int] = [*items] # ❌️
_4: list[int] | list[str] = [*items] # ❌️
_5: list[str] | list[int] = [x for x in items] # ❌️
_6: list[int] | list[str] = [x for x in items] # ❌️
_7: list[str] | list[int] = [upcast(x) for x in items] # ✅️
_8: list[int] | list[str] = [upcast(x) for x in items] # ✅️
return items
context: https://github.com/python/mypy/pull/20419#discussion_r2658824097
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
リンクされた mypy playground から始め、上限付きジェネリックの例を再現し、その6つの診断結果を他の型チェッカーと比較します。6つのユニオン代入が、既存の受理されるケースを変更したり新しいエラーを導入したりすることなく受理されれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- compilers
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- 明確に書かれている
- 初心者へのやさしさ
- 45/100