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