tests/tools/test_application.py
changeset 1847 6198190bc121
parent 1832 0f1081928d65
child 1850 614396cbffbf
equal deleted inserted replaced
1846:14b40afccd69 1847:6198190bc121
    72         if self.exc_info is not None:
    72         if self.exc_info is not None:
    73             # reraise catched previously exception
    73             # reraise catched previously exception
    74             raise self.exc_info[0], self.exc_info[1], self.exc_info[2]
    74             raise self.exc_info[0], self.exc_info[1], self.exc_info[2]
    75 
    75 
    76     def ProcessEvents(self):
    76     def ProcessEvents(self):
    77         for i in range(0, 30):
    77         for dummy in range(0, 30):
    78             self.CheckForErrors()
    78             self.CheckForErrors()
    79             wx.Yield()
    79             wx.Yield()
    80             time.sleep(0.01)
    80             time.sleep(0.01)
    81 
    81 
    82 
    82