Show More
|
1 | NO CONTENT: modified file |
@@ -60,7 +60,7 b' class Kernel(Configurable):' | |||
|
60 | 60 | def _eventloop_changed(self, name, old, new): |
|
61 | 61 | """schedule call to eventloop from IOLoop""" |
|
62 | 62 | loop = ioloop.IOLoop.instance() |
|
63 |
loop.add_ |
|
|
63 | loop.add_callback(self.enter_eventloop) | |
|
64 | 64 | |
|
65 | 65 | shell = Instance('IPython.core.interactiveshell.InteractiveShellABC') |
|
66 | 66 | shell_class = Type(ZMQInteractiveShell) |
@@ -250,7 +250,11 b' class Kernel(Configurable):' | |||
|
250 | 250 | |
|
251 | 251 | def enter_eventloop(self): |
|
252 | 252 | """enter eventloop""" |
|
253 | self.log.info("entering eventloop") | |
|
253 | self.log.info("entering eventloop %s", self.eventloop) | |
|
254 | for stream in self.shell_streams: | |
|
255 | # flush any pending replies, | |
|
256 | # which may be skipped by entering the eventloop | |
|
257 | stream.flush(zmq.POLLOUT) | |
|
254 | 258 | # restore default_int_handler |
|
255 | 259 | signal(SIGINT, default_int_handler) |
|
256 | 260 | while self.eventloop is not None: |
General Comments 0
You need to be logged in to leave comments.
Login now