标签: python python-3.6 type-hinting
class Test: @staticmethod def im_ecstatic() -> Test: return Test()
给予:NameError: name 'Test' is not defined
NameError: name 'Test' is not defined
即使该方法不是静态的,我也会遇到相同的错误。
是否可以为此类函数的返回类型提供类型提示?还是我应该通过其他方式暗示返回类型?