标签: python python-3.x typing
我正在享受Python 3.5 类型提示支持,但面临特别关注。
我正在尝试指定构造函数参数的类型,该参数应该是类本身(即自引用关系)。这是我的例子:
class Section(object): def __init__(self, path: str, parent: Section): pass
Python抱怨
NameError: name 'Section' is not defined
有没有办法解决这个问题?