Debugger/DebuggerInterfacePython.py

changeset 3021
801289962f4e
parent 3020
542e97d4ecb3
child 3032
927a2f8b3669
child 3058
0a02c433f52d
diff -r 542e97d4ecb3 -r 801289962f4e Debugger/DebuggerInterfacePython.py
--- a/Debugger/DebuggerInterfacePython.py	Mon Oct 14 19:30:36 2013 +0200
+++ b/Debugger/DebuggerInterfacePython.py	Mon Oct 14 20:08:19 2013 +0200
@@ -250,7 +250,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:
@@ -351,7 +352,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:
@@ -864,9 +866,11 @@
                     isCall = event.lower() == "c"
                     fromFile, fromLineno, fromFunc = fromStr.rsplit(":", 2)
                     toFile, toLineno, toFunc = toStr.rsplit(":", 2)
-                    self.debugServer.signalClientCallTrace(isCall,
-                        fromFile, fromLineno, fromFunc,
-                        toFile, toLineno, toFunc)
+                    self.debugServer.signalClientCallTrace(isCall, fromFile,
+                                                           fromLineno,
+                                                           fromFunc,
+                                                           toFile, toLineno,
+                                                           toFunc)
                     continue
                 
                 if resp == DebugProtocol.ResponseThreadList:

eric ide

mercurial