MCPcopy Create free account
hub / github.com/ipython/ipython / Run

Method Run

IPython/terminal/pt_inputhooks/wx.py:62–67  ·  view source on GitHub ↗
(self, time, input_is_ready)

Source from the content-addressed store, hash-verified

60class EventLoopRunner(object):
61
62 def Run(self, time, input_is_ready):
63 self.input_is_ready = input_is_ready
64 self.evtloop = wx.EventLoop()
65 self.timer = EventLoopTimer(self.check_stdin)
66 self.timer.Start(time)
67 self.evtloop.Run()
68
69 def check_stdin(self):
70 if self.input_is_ready():

Callers 1

inputhook_wx2Function · 0.95

Calls 1

EventLoopTimerClass · 0.70

Tested by

no test coverage detected