コード例 #1
0
ファイル: appender.py プロジェクト: veliaho/twisted-suds
 def __init__(self, content):
     Element.__init__(self, content.name, content.parent)
     self.__content = content
コード例 #2
0
ファイル: document.py プロジェクト: veliaho/twisted-suds
 def __init__(self, root=None):
     Element.__init__(self, 'document')
     if root is not None:
         self.append(root)