示例#1
0
 def __del__(self):
     """It might not be called, therefore we try to clean it all in OnCloseWindow."""
     if hasattr(self, 'controller') and hasattr(self.controller, 'timer'):
         if self.controller.timer.IsRunning():
             self.controller.timer.Stop()
     CleanUp(TMP_DIR)()
示例#2
0
 def OnCloseWindow(self, event):
     if self.controller.timer.IsRunning():
         self.controller.timer.Stop()
     CleanUp(TMP_DIR)()
     self._mgr.UnInit()
     self.Destroy()