DebugClients/Python/DebugBase.py

branch
debugger speed
changeset 5048
9899fb545b1f
parent 5046
d57f18f15f1a
child 5050
a6335e924d08
diff -r d57f18f15f1a -r 9899fb545b1f DebugClients/Python/DebugBase.py
--- a/DebugClients/Python/DebugBase.py	Wed Jul 20 22:14:24 2016 +0200
+++ b/DebugClients/Python/DebugBase.py	Sat Jul 23 14:12:07 2016 +0200
@@ -413,6 +413,7 @@
         """
         Private method to check if the function / method has a line number
         which is a breakpoint.
+        
         @param frame the frame object
         @type frame object
         @return Flag indicating a function / method with breakpoint
@@ -425,7 +426,8 @@
         except KeyError:
             filename = self.fix_frame_filename(frame)
             if filename not in Breakpoint.breakInFile:
-                Breakpoint.breakInFrameCache[frame.f_globals.get('__file__'),
+                Breakpoint.breakInFrameCache[
+                    frame.f_globals.get('__file__'),
                     frame.f_code.co_firstlineno] = False
                 return False
             lineNo = frame.f_code.co_firstlineno
@@ -442,7 +444,8 @@
                         frame.f_globals.get('__file__'),
                         frame.f_code.co_firstlineno] = True
                     return True
-            Breakpoint.breakInFrameCache[frame.f_globals.get('__file__'),
+            Breakpoint.breakInFrameCache[
+                frame.f_globals.get('__file__'),
                 frame.f_code.co_firstlineno] = False
             return False
     

eric ide

mercurial