DebugClients/Python3/DebugBase.py

changeset 826
2e3e2055e715
parent 791
9ec2ac20e54e
child 935
bf9ee1e00bc5
diff -r 9cdec3c5bc07 -r 2e3e2055e715 DebugClients/Python3/DebugBase.py
--- a/DebugClients/Python3/DebugBase.py	Fri Jan 07 12:38:39 2011 +0100
+++ b/DebugClients/Python3/DebugBase.py	Fri Jan 07 15:52:50 2011 +0100
@@ -199,7 +199,8 @@
         """
         if self.stop_here(frame) or self.break_here(frame):
             self.user_line(frame)
-            if self.quitting: raise bdb.BdbQuit
+            if self.quitting:
+                raise bdb.BdbQuit
         return self.trace_dispatch
 
     def dispatch_return(self, frame, arg):
@@ -226,7 +227,8 @@
         """
         if not self.__skip_it(frame):
             self.user_exception(frame, arg)
-            if self.quitting: raise bdb.BdbQuit
+            if self.quitting:
+                raise bdb.BdbQuit
         return self.trace_dispatch
 
     def set_trace(self, frame = None):

eric ide

mercurial