谁能帮助我使用正确的语法__get_except_lines(...)
从父类调用我的方法?
我有一个类,其方法如下所示。这个特定的方法有 2 个下划线,因为我不希望“用户”使用它。
NewPdb(object)
myvar = ...
...
def __init__(self):
...
def __get_except_lines(self,...):
...
在一个单独的文件中,我有另一个从此类继承的类。
from new_pdb import NewPdb
PdbLig(NewPdb):
def __init__(self):
....
self.cont = NewPdb.myvar
self.cont2 = NewPdb.__get_except_lines(...)
我得到一个真正让我困惑的属性错误:
AttributeError: type object 'NewPdb' has no attribute '_PdbLig__get_except_lines'