(ev)
| 180 | timer = wx.Timer() |
| 181 | |
| 182 | def poll(ev): |
| 183 | if context.input_is_ready(): |
| 184 | timer.Stop() |
| 185 | app.ExitMainLoop() |
| 186 | |
| 187 | timer.Start(poll_interval) |
| 188 | timer.Bind(wx.EVT_TIMER, poll) |
nothing calls this directly
no outgoing calls
no test coverage detected