(🐞) Call to function decorated with a `Callable` causes inner function to fail to infer type of variable
オープン
まだ誰も着手していません。
bug
- 主要言語
- Python
- スター
- 20.6k
- フォーク
- 3.3k
- PR マージ指標
- PR 指標を取得中
説明
from typing import Any, Callable, TypeVar, _T as T
def bar() -> None:
def inner() -> None:
it.encode() # error: Cannot determine type of 'it'
breaks()
it = ""
deco: Callable[[T], T]
@deco
def breaks() -> None: ...
It appears that the order of the function declarations affects the result(:trollface:):
from typing import Any, Callable, TypeVar
T = TypeVar("T")
deco: Callable[[T], T]
@deco
def doesnt_break() -> None: ...
def bar() -> None:
def inner() -> None:
it.encode() # no error
doesnt_break()
it = ""
I have determined that this only happens when the deco is a Callable, when it is a function there is no error:
from typing import Any, TypeVar, _T as T
def bar() -> None:
def inner() -> None:
it.encode() # no error
doesnt_break()
it = ""
def deco(fn: T) -> T: ...
@deco
def doesnt_break() -> None: ...
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず issue にある 2 つの Python の再現コードを実行するか、リンクされている playground を使用し、Callable ベースのデコレーションと関数ベースのデコレータを比較します。ネストされた内部関数とデコレータ呼び出しの型推論パスを追跡します。完了の条件は、すでに通過している例を退行させることなく、最初の例が str として推論されることです。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- devtools
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 42/100