我正在嘗試使用抽象基類來編寫一些接口的Python類型註釋。有沒有辦法對*args
和**kwargs
的可能類型進行註釋?爲* args和** kwargs輸入註釋
例如,如何表示函數的合理參數是int
還是兩個int
? type(args)
給出Tuple
,所以我的猜測是將其註釋爲Union[Tuple[int, int], Tuple[int]]
,但這不起作用。從mypy
from typing import Union, Tuple
def foo(*args: Union[Tuple[int, int], Tuple[int]]):
try:
i, j = args
return i + j
except ValueError:
assert len(args) == 1
i = args[0]
return i
# ok
print(foo((1,)))
print(foo((1, 2)))
# mypy does not like this
print(foo(1))
print(foo(1, 2))
錯誤消息:
t.py: note: In function "foo":
t.py:6: error: Unsupported operand types for + ("tuple" and "Union[Tuple[int, int], Tuple[int]]")
t.py: note: At top level:
t.py:12: error: Argument 1 to "foo" has incompatible type "int"; expected "Union[Tuple[int, int], Tuple[int]]"
t.py:14: error: Argument 1 to "foo" has incompatible type "int"; expected "Union[Tuple[int, int], Tuple[int]]"
t.py:15: error: Argument 1 to "foo" has incompatible type "int"; expected "Union[Tuple[int, int], Tuple[int]]"
t.py:15: error: Argument 2 to "foo" has incompatible type "int"; expected "Union[Tuple[int, int], Tuple[int]]"
這是有道理的,因爲它需要有是在自稱爲tuple
mypy不喜歡本作的函數調用。打開包裝後的添加也會導致我不明白的打字錯誤。
如何註釋*args
和**kwargs
的合理類型?
只是好奇,爲什麼添加'可選'? Python有沒有改變,或者你改變了主意?由於「無」默認值,它是否仍然不是必須的? – Praxeolitic
@Praxeolitic是的,實際上,當你使用'None'作爲默認值時,默認的'Optional'註釋會使某些用例變得更難,並且現在正在從PEP中移除。 –
[這裏是討論這個的鏈接](https://github.com/python/typing/issues/275)。這聽起來像明確的「可選」將在未來需要。 –