コード例 #1
0
ファイル: nodes.py プロジェクト: inactivist/clonedigger
 def append(self, child):
     """overridden to detect problems easily"""
     assert child not in self.parents()
     VNode.append(self, child)
コード例 #2
0
ファイル: nodes.py プロジェクト: noirbizarre/dupy
 def append(self, child):
     """overridden to detect problems easily"""
     assert child not in self.parents()
     VNode.append(self, child)
コード例 #3
0
ファイル: nodes.py プロジェクト: inactivist/clonedigger
 def __init__(self, id=None, klass=None):
     VNode.__init__(self, id)
     self.klass = klass
コード例 #4
0
ファイル: nodes.py プロジェクト: noirbizarre/dupy
 def __init__(self, id=None, klass=None):
     VNode.__init__(self, id)
     self.klass = klass