##// END OF EJS Templates
send shutdown_request on exit of `ipython console`...
MinRK -
Show More
@@ -141,6 +141,11 b' class ZMQTerminalInteractiveShell(TerminalInteractiveShell):'
141 if self.has_readline:
141 if self.has_readline:
142 self.set_readline_completer()
142 self.set_readline_completer()
143
143
144 def ask_exit(self):
145 super(ZMQTerminalInteractiveShell, self).ask_exit()
146 if self.exit_now:
147 self.client.shutdown()
148
144 def run_cell(self, cell, store_history=True):
149 def run_cell(self, cell, store_history=True):
145 """Run a complete IPython cell.
150 """Run a complete IPython cell.
146
151
General Comments 0
You need to be logged in to leave comments. Login now