diff -r 0d9853ceb288 -r 3ede487187f2 src/eric7/Debugger/DebugUI.py --- a/src/eric7/Debugger/DebugUI.py Mon Apr 22 13:20:16 2024 +0200 +++ b/src/eric7/Debugger/DebugUI.py Mon Apr 22 15:15:36 2024 +0200 @@ -45,8 +45,6 @@ @signal resetUI(full) emitted to reset the UI partially or fully @signal exceptionInterrupt() emitted after the execution was interrupted by an exception and acknowledged by the user - @signal appendStdout(msg) emitted when the client program has terminated - and the display of the termination dialog is suppressed @signal processChangedProjectFiles() emitted to indicate, that changed project files should be processed """ @@ -56,7 +54,6 @@ exceptionInterrupt = pyqtSignal() debuggingStarted = pyqtSignal(str) debuggingFinished = pyqtSignal() - appendStdout = pyqtSignal(str) processChangedProjectFiles = pyqtSignal() def __init__(self, ui, vm, debugServer, debugViewer, project):