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