コード例 #1
0
ファイル: database.py プロジェクト: tanmoydeb07/cheshire3
 def __init__(self, session, config, parent):
     self.indexes = CaselessDictionary()
     self.protocolMaps = CaselessDictionary()
     self.indexConfigs = CaselessDictionary()
     self.protocolMapConfigs = CaselessDictionary()
     self.records = {}
     Database.__init__(self, session, config, parent)
     SummaryObject.__init__(self, session, config, parent)
     if not session.database:
         session.database = self.id
コード例 #2
0
ファイル: database.py プロジェクト: Cheshire-Grampa/cheshire3
 def __init__(self, session, config, parent):
     self.indexes = CaselessDictionary()
     self.protocolMaps = CaselessDictionary()
     self.indexConfigs = CaselessDictionary()
     self.protocolMapConfigs = CaselessDictionary()
     self.records = {}
     Database.__init__(self, session, config, parent)
     SummaryObject.__init__(self, session, config, parent)
     if not session.database:
         session.database = self.id
コード例 #3
0
ファイル: testWorkflow.py プロジェクト: bloomonkey/cheshire3
 def __init__(self, session, config, parent=None):
     Database.__init__(self, session, config, parent=parent)
コード例 #4
0
ファイル: testWorkflow.py プロジェクト: tanmoydeb07/cheshire3
 def __init__(self, session, config, parent=None):
     Database.__init__(self, session, config, parent=parent)