いくつかのインターフェイスを作成するために、抽象基本クラスを使用してPythonの型注釈を試しています。*args
andの可能なタイプに注釈を付ける方法はあり**kwargs
ますか?
たとえば、関数への賢明な引数が1つint
または2つint
のであることをどのように表現しますか?type(args)
与えTuple
私の推測のようにタイプに注釈を付けることだったのでUnion[Tuple[int, int], Tuple[int]]
、これは動作しません。
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))
mypyからのエラーメッセージ:
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]]"
mypyはtuple
、呼び出し自体にaがあることを期待しているため、関数呼び出しではこれを好まないのは理にかなっています。解凍後の追加も、理解できない入力エラーを引き起こします。
*args
and の賢明な型にどのように注釈を付けるの**kwargs
ですか?
Optional
?Pythonについて何か変化はありましたか、またはあなたの考えを変えましたか?None
デフォルトのため、それはまだ厳密に必要ではありませんか?