Stop using string exceptions

This commit is contained in:
Neal Norwitz 2002-03-31 13:58:20 +00:00
parent 57b17ad6ae
commit 27a353020b
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ import types
__all__ = ["BdbQuit","Bdb","Breakpoint"]
BdbQuit = 'bdb.BdbQuit' # Exception to give up completely
class BdbQuit(Exception): pass
class Bdb: