"Invalid base class" when inheriting from tuple of classes
まだ誰も着手していません。
- 主要言語
- Python
- スター
- 20.6k
- フォーク
- 3.3k
- PR マージ指標
- PR 指標を取得中
説明
I appreciate there are some complexities around handling inheritance from dynamic sources, so it's possible that this is a duplicate of one of those (#4284 seems most likely related), though I think this is a slightly different case.
I would like the following to pass type checking, yet I get an "Invalid base class" error even after adding an explicit type annotation.
Because in this case the tuple is of a fixed size (and the members of the tuple are all valid types) it feels like it should be possible to determine that it's valid to inherit from an expansion of that tuple.
# foo.py
from typing import Tuple, Type
class A: pass
class B: pass
PlainBases = (A, B)
reveal_type(PlainBases)
# ^ Revealed type is 'Tuple[def () -> foo.A, def () -> foo.B]'
class PlainC(*PlainBases):
# ^ Invalid base class
pass
AnotatedBases = (A, B) # type: Tuple[Type[A], Type[B]]
reveal_type(AnotatedBases)
# ^ Revealed type is 'Tuple[Type[foo.A], Type[foo.B]]'
class AnotatedC(*AnotatedBases):
# ^ Invalid base class
pass
I'm using Python 3.5 and mypy 0.620. Having just updated to 0.641 I see that there are now also errors that "Can use starred expression only as assignment target" in the above, which goes some way to explaining why this is currently unsupported, though leads to another one (apologies if this is documented somewhere):
Why is it that mypy is unable to expand the types of this starred expression?
Is this a result of the issue relating to multiple passes which is mentioned in https://github.com/python/mypy/issues/4284#issuecomment-346908509 or something else?
Is this something which is possible/likely to be supported?
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、issue にあるアスタリスク付きの基底の例を、参照されている mypy のバージョンで再現し、その後、複数回のパスについての issue #4284 の議論を読んでください。クラスの基底にある固定タプルの期待される扱いが決定されて実装されるか、サポートされていない動作が適切なチェックとともに明確に文書化されて初めて、作業は完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- compilers
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 32/100