コード例 #1
0
ファイル: pydevconsole.py プロジェクト: rjraaz/Pydev
 def run(self):
     while True:
         pydev_guisupport.start_event_loop_wx(self.app)
         # There's an issue here: the event loop won't start if we don't actually have a window created, so, we have
         # to process the events manually (if redirect was True, we'd have a window, so, it'd properly block).
         time.sleep(0.01)
         self.app.ProcessPendingEvents()
コード例 #2
0
 def run(self):
     while True:
         pydev_guisupport.start_event_loop_wx(self.app)
         # There's an issue here: the event loop won't start if we don't actually have a window created, so, we have
         # to process the events manually (if redirect was True, we'd have a window, so, it'd properly block).
         time.sleep(.01)
         self.app.ProcessPendingEvents()
コード例 #3
0
ファイル: pydevconsole.py プロジェクト: treygreer/Pydev
 def run(self):
     while True:
         pydev_guisupport.start_event_loop_wx(self.app)
コード例 #4
0
ファイル: pydevconsole.py プロジェクト: Venti-/Pydev
 def run(self):
     while True:
         pydev_guisupport.start_event_loop_wx(self.app)