diff options
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r-- | Lib/bdb.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py index b05ed220917..d5b051b5e33 100644 --- a/Lib/bdb.py +++ b/Lib/bdb.py @@ -6,7 +6,8 @@ import types __all__ = ["BdbQuit","Bdb","Breakpoint"] -class BdbQuit(Exception): pass +class BdbQuit(Exception): + """Exception to give up completely""" class Bdb: |