コード例 #1
0
ファイル: firewall.py プロジェクト: zach-/cisc_230_project
    def commit(self):
        """
        Commits all chains that were created during the session

        :return
        """
        for table in self.__tables:
            table.commit()
コード例 #2
0
 def commit(self):
     """Commit changes to the tables."""
     for table in self.__tables:
         table.commit()
コード例 #3
0
ファイル: firewall.py プロジェクト: mankuthimma/junXon
	def commit(self):
		"""Commit changes to the tables."""
		for table in self.__tables: 
			table.commit()