##// END OF EJS Templates
Rename history_tail_reply back to history_reply.
Thomas Kluyver -
Show More
@@ -160,7 +160,7 class IPythonWidget(FrontendWidget):
160 else:
160 else:
161 super(IPythonWidget, self)._handle_execute_reply(msg)
161 super(IPythonWidget, self)._handle_execute_reply(msg)
162
162
163 def _handle_history_tail_reply(self, msg):
163 def _handle_history_reply(self, msg):
164 """ Implemented to handle history tail replies, which are only supported
164 """ Implemented to handle history tail replies, which are only supported
165 by the IPython kernel.
165 by the IPython kernel.
166 """
166 """
@@ -46,7 +46,7 class QtXReqSocketChannel(SocketChannelQObject, XReqSocketChannel):
46 execute_reply = QtCore.Signal(object)
46 execute_reply = QtCore.Signal(object)
47 complete_reply = QtCore.Signal(object)
47 complete_reply = QtCore.Signal(object)
48 object_info_reply = QtCore.Signal(object)
48 object_info_reply = QtCore.Signal(object)
49 history_tail_reply = QtCore.Signal(object)
49 history_reply = QtCore.Signal(object)
50
50
51 # Emitted when the first reply comes back.
51 # Emitted when the first reply comes back.
52 first_reply = QtCore.Signal()
52 first_reply = QtCore.Signal()
@@ -348,7 +348,7 class Kernel(Configurable):
348 else:
348 else:
349 hist = []
349 hist = []
350 content = {'history' : list(hist)}
350 content = {'history' : list(hist)}
351 msg = self.session.send(self.reply_socket, 'history_tail_reply',
351 msg = self.session.send(self.reply_socket, 'history_reply',
352 content, parent, ident)
352 content, parent, ident)
353 logger.debug(str(msg))
353 logger.debug(str(msg))
354
354
General Comments 0
You need to be logged in to leave comments. Login now