[Feature] Get the type of generic typeVar in class

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

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

評価

難易度
5/5
見積もり時間
1週間以上
初心者へのやさしさ
25/100
issue の種類
機能追加
明瞭さ
説明が足りない
活発さ
停滞
技術スタック
python
領域
devtools

調査の方向性

Issue ではファイル、テスト、エントリポイントが特定されていないため、まず mypy による Generic クラスと型変数の処理を確認することから始めます。完了とするには、ジェネリッククラスが自身の型変数の型を取得できるようにする、合意済みの設計と実装が必要であり、要求された動作を示すテストも必要です。

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

説明

feature

Feature

Having a class inheriting from a Generic make it possible to get type of the typeVar, possibly with a method like get_type or alike.

class MyClass(Generic[T]):
    def __init__(self):
         self.generic_type = T.get_type()

Pitch

Other languages' type system have this capability.

e.g.

C#;
Type type = abc.GetType().GetGenericArguments()[0];
https://stackoverflow.com/questions/557340/how-to-get-the-type-of-t-from-a-member-of-a-generic-class-or-method

C++;

template <class T>
class MyClass : public Base<T>
{
public:
    T t;
    decltype(t) t2;
};

https://en.cppreference.com/w/cpp/language/decltype

主要言語
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 を短くまとめたダイジェスト。