--- a/src/eric7/Debugger/CallTraceViewer.py Mon Apr 22 13:20:16 2024 +0200 +++ b/src/eric7/Debugger/CallTraceViewer.py Mon Apr 22 15:15:36 2024 +0200 @@ -220,7 +220,7 @@ columnStr = item.text(column) match = self.__entryRe.fullmatch(columnStr.strip()) if match: - filename, lineno, func = match.groups() + filename, lineno, _func = match.groups() try: lineno = int(lineno) except ValueError: @@ -321,17 +321,17 @@ return self.__callTraceEnabled @pyqtSlot(str, int, str, bool, str) - def __clientExit(self, program, status, message, quiet, debuggerId): + def __clientExit(self, _program, _status, _message, _quiet, debuggerId): """ Private slot to handle a debug client terminating. - @param program name of the exited program + @param _program name of the exited program (unused) @type str - @param status exit code of the debugged program + @param _status exit code of the debugged program (unused) @type int - @param message exit message of the debugged program + @param _message exit message of the debugged program (unused) @type str - @param quiet flag indicating to suppress exit info display + @param _quiet flag indicating to suppress exit info display (unused) @type bool @param debuggerId ID of the debugger backend @type str