381 """ |
381 """ |
382 Public method to set the debugger UI. |
382 Public method to set the debugger UI. |
383 |
383 |
384 @param ui reference to the debugger UI object (DebugUI) |
384 @param ui reference to the debugger UI object (DebugUI) |
385 """ |
385 """ |
386 self.connect(ui, SIGNAL('exceptionInterrupt'), self.__writePrompt) |
386 ui.exceptionInterrupt.connect(self.__writePrompt) |
387 |
387 |
388 def __initialise(self): |
388 def __initialise(self): |
389 """ |
389 """ |
390 Private method to get ready for a new remote interpreter. |
390 Private method to get ready for a new remote interpreter. |
391 """ |
391 """ |