--- a/Debugger/DebuggerInterfacePython3.py Mon Oct 14 19:30:36 2013 +0200 +++ b/Debugger/DebuggerInterfacePython3.py Mon Oct 14 20:08:19 2013 +0200 @@ -245,7 +245,8 @@ """ started.</p>""")) return process, self.__isNetworked - process = self.__startProcess(interpreter, + process = self.__startProcess( + interpreter, [debugClient, noencoding, str(port), redirect, ipaddr], clientEnv) if process is None: @@ -346,7 +347,8 @@ """ started.</p>""")) return process, self.__isNetworked - process = self.__startProcess(interpreter, + process = self.__startProcess( + interpreter, [debugClient, noencoding, str(port), redirect, ipaddr], clientEnv) if process is None: @@ -858,7 +860,8 @@ isCall = event.lower() == "c" fromFile, fromLineno, fromFunc = fromStr.rsplit(":", 2) toFile, toLineno, toFunc = toStr.rsplit(":", 2) - self.debugServer.signalClientCallTrace(isCall, + self.debugServer.signalClientCallTrace( + isCall, fromFile, fromLineno, fromFunc, toFile, toLineno, toFunc) continue