我正在尝试注释类字段,但是mypy(0.670)无法在下面的代码中引发问题:
class X(object):
x: int
def __init__(self):
self.x = "a"
x = X()
是否有一种方法可以使用mypy对类字段执行类型检查?如果没有,是否可以在运行时轻松地做到这一点?
答案 0 :(得分:0)
最终使用typeguard
模块编写了一个简单的运行时检查。
import typing
import typeguard
def check_class_hints(obj):
hints = typing.get_type_hints(obj.__class__)
for (name, hint_ty) in hints.items():
val = getattr(obj, name)
typeguard.check_type(name, val, hint_ty)
class X(object):
x: int
def __init__(self):
self.x = "a"
x = X()
check_class_hints(x)