##// END OF EJS Templates
remove unused current_msg_id
MinRK -
Show More
@@ -44,7 +44,6 b' class ZMQTerminalInteractiveShell(TerminalInteractiveShell):'
44 """A subclass of TerminalInteractiveShell that uses the 0MQ kernel"""
44 """A subclass of TerminalInteractiveShell that uses the 0MQ kernel"""
45 _executing = False
45 _executing = False
46 _execution_state = Unicode('')
46 _execution_state = Unicode('')
47 _current_msg_id = Unicode('')
48
47
49 image_handler = Enum(('PIL', 'stream', 'tempfile', 'callable'),
48 image_handler = Enum(('PIL', 'stream', 'tempfile', 'callable'),
50 config=True, help=
49 config=True, help=
@@ -158,7 +157,6 b' class ZMQTerminalInteractiveShell(TerminalInteractiveShell):'
158 self.client.shell_channel.get_msg()
157 self.client.shell_channel.get_msg()
159 # shell_channel.execute takes 'hidden', which is the inverse of store_hist
158 # shell_channel.execute takes 'hidden', which is the inverse of store_hist
160 msg_id = self.client.shell_channel.execute(cell, not store_history)
159 msg_id = self.client.shell_channel.execute(cell, not store_history)
161 self._current_msg_id = msg_id
162
160
163 # first thing is wait for any side effects (output, stdin, etc.)
161 # first thing is wait for any side effects (output, stdin, etc.)
164 self._executing = True
162 self._executing = True
General Comments 0
You need to be logged in to leave comments. Login now