`singledispatchmethod.register` fails with `typing.Self` annotation
未關閉
還沒有人認領這個 Issue。
stdlib
topic-typing
type-feature
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
Bug report
Bug description:
When using singledispatchmethod, the register decorator function raises an exception if self is annotated with typing.Self:
TypeError: Invalid annotation for 'self'. typing.Self is not a class.
Minimal example:
from functools import singledispatchmethod
from typing import Self
class Foo:
@singledispatchmethod
def bar(self: Self, arg: int | str) -> int | str: ...
@bar.register
def _(self: Self, arg: int) -> int:
return arg
foo = Foo()
print(foo.bar(1))
The workaround is to remove the typing.Self annotation for the _ function.
(Same for singledispatch but that should not be used in that case anyway)
CPython versions tested on:
3.13
Operating systems tested on:
Linux
Linked PRs
- gh-130829
- gh-143465
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
從 functools.singledispatchmethod.register 開始,並在 Python 3.13 上重現報告中的最小範例。在繼續之前,檢查現有的相關工作。完成的標準是:使用 typing.Self 的方法可以註冊,而不會因註解無效而引發 TypeError,並且為該範例提供回歸測試涵蓋。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- backend
- Issue 類型
- 缺陷
- 難度
- 3/5
- 預估耗時
- 1-2 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 25/100