Lines Matching refs:BdbQuit
8 __all__ = ["BdbQuit", "Bdb", "Breakpoint"]
13 class BdbQuit(Exception):
110 self.user_line(). Raise BdbQuit if self.quitting is set.
115 if self.quitting: raise BdbQuit
122 self.user_call(). Raise BdbQuit if self.quitting is set.
137 if self.quitting: raise BdbQuit
144 self.user_return(). Raise BdbQuit if self.quitting is set.
156 if self.quitting: raise BdbQuit
166 self.user_exception(). Raise BdbQuit if self.quitting is set.
176 if self.quitting: raise BdbQuit
185 if self.quitting: raise BdbQuit
356 Raises BdbQuit exception in the next call to a dispatch_*() method.
601 except BdbQuit:
621 except BdbQuit:
644 except BdbQuit: