(self, time)
| 66 | class EventLoopRunner(object): |
| 67 | |
| 68 | def Run(self, time): |
| 69 | self.evtloop = wx.EventLoop() |
| 70 | self.timer = EventLoopTimer(self.check_stdin) |
| 71 | self.timer.Start(time) |
| 72 | self.evtloop.Run() |
| 73 | |
| 74 | def check_stdin(self): |
| 75 | if stdin_ready(): |
no test coverage detected