Metaclasses with type annotated attributes do not add `__annotations__ = {}` to derived classes.
未关闭
还没有人认领这个 Issue。
docs
topic-typing
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 35.9k
- PR 合并指标
- PR 指标待抓取
描述
Bug report
Bug description:
This can cause odd behaviour for subclasses which then propagate their parent's annotations rather than their own.
class MyType(type):
METACLASS_VAR: int = 1
class A(metaclass=MyType):
value: str = "HI"
class B(A):
pass
B.__annotations__ # {"value": str} instead of {}; but if you remove the type annotation in `MyType`, you get {}
This issue only seems to affect versions prior to 3.14
CPython versions tested on:
3.10, 3.13, 3.14
Operating systems tested on:
Linux
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
先在 CPython 3.10 和 3.13 上运行已报告的 MyType、A 和 B 复现用例,并与 3.14 进行比较。跟踪元类上的类型注释属性如何影响派生类的 annotations。完成标准是:B 这样的子类获得自己的空注释字典,而不是继承 A 的注释,并且已在 Linux 上验证其行为。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- compilers
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 冷清
- 描述清晰度
- 基本清楚
- 新手友好度
- 52/100