python 中evaluationcontext是什么,我可以在带有延迟注释评估的Python类型提示中使用__qualname__吗?...
I like using __qualname__ for the return-type annotation of factory-style class methods, because it doesn't hardcode the classname and therefore keeps working subclasses (cf. this answer).class Foo:@c...