Forward-referencing type application with type variable in a value expression in stubs emits confusing error
未关闭
还没有人认领这个 Issue。
bug
- 主要语言
- Python
- 星标
- 20.6k
- 派生
- 3.3k
- PR 合并指标
- PR 指标待抓取
描述
Bug Report, To Reproduce, & Actual Behaviour
In .pyi stub files, the spec mandates type-checkers to recognise forward references in annotation expressions without string-quoting. It is however silent about value expressions, but in mypy I've used symbols defined later in a stub file in a value context before without any issues, except recently when hitting the following example:
# stub.pyi
from typing_extensions import Generic, TypeVar
R = TypeVar("R")
T = TypeVar("T")
class A(Generic[R]):
var = B[R]() # E: "R" is a type variable and only valid in type context
class B(Generic[T]): ...
Expected Behavior
Either:
- no errors, or
- mypy doesn't support forward references in value contexts for stub files, and this emits a
used-before-deferror atB[R]().
Your Environment
- Mypy version used: 1.17
- Python version used: 3.11, 3.12
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 stub.pyi 复现用例开始,检查 mypy 如何处理 stub 文件值表达式中的前向引用。将当前诊断结果与 issue 中描述的两种预期结果进行比较;当该行为要么被接受,要么在 B[R]() 处报告为 used-before-def 时,即表示完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- devtools
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100