コード例 #1
0
ファイル: slstorageCLI.py プロジェクト: pruan/TestDepot
 def add_container(self, argv):
     """add_container <name>
 Adds a new container in the current location."""
     name = argv[1]
     new = netobjects.PersistentAttrDict()
     self._obj[name] = new
     slstorage.commit()
     self._reset_scopes()
コード例 #2
0
ファイル: slstorageCLI.py プロジェクト: pruan/TestDepot
 def commit(self, argv):
     """commit
 Commit changes to the database now."""
     slstorage.commit()