Python有一个内置的异常,尽管直到运行时您都不会遇到该异常。
class base(object): @property def path(self): raise NotImplementedErrorclass SubClass(base): path = 'blah'

Python有一个内置的异常,尽管直到运行时您都不会遇到该异常。
class base(object): @property def path(self): raise NotImplementedErrorclass SubClass(base): path = 'blah'