3.14 changes annotations behaviour for dataclasses.make_dataclass
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
Bug report
Bug description:
I have many dataclasses created on demand by dataclasses.make_dataclass. 3.14 changes behaviour for instances of the dataclass.
In 3.13 and before, the instances have a __annotations__ attribute with the expected contents.
In 3.14, that attribute no longer exists, but calling instance.__annotate_func__ does return what was in __annotations__ before.
The 3.14 howto does say "you may access the annotations data member manually"
import dataclasses
import inspect
dc = dataclasses.make_dataclass("foo", (("one", int), ("two", str), ("three", complex)))
value = dc(1, 'hello', 3+4j)
print(f"{dir(value)=}")
try:
print(inspect.get_annotations(value))
except Exception as exc:
print("inspect.get_annotations exception: ", type(exc), exc)
if hasattr(dc, "__annotate_func__"):
print(f"{value.__annotate_func__()=}")
For Python 3.13:
dir(value)=['__annotations__', '__class__', '__dataclass_fields__', '__dataclass_params__ ....
For Python 3.14:
dir(value)=['__annotate_func__', '__annotations_cache__', '__class__', '__dataclass_fields__' ....
In both cases inspect.get_annotations() does give TypeError.
The release notes cover annotations, but nothing about changes to dataclasses instances.
Perhaps the annotations attributes shouldn't be on instances, but they have been. I also see __annotate_func__ on instances of regular objects from Python classes.
CPython versions tested on:
3.14, 3.13
Operating systems tested on:
Linux
Linked PRs
- gh-134387
- gh-134509
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
先從這裡描述的 dataclasses.make_dataclass 和 inspect.get_annotations 行為開始,然後檢視相關聯的 PR gh-134387 和 gh-134509。只有在 3.14 的行為獲得解決,或以與 3.13 的比較和 annotations how-to 一致的方式明確記錄後,才算完成。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- backend
- Issue 類型
- 缺陷
- 難度
- 5/5
- 預估耗時
- 一週以上
- 活躍度
- 停滯
- 描述清晰度
- 需要釐清
- 新手友好度
- 25/100