summaryrefslogtreecommitdiff
path: root/Lib/bdb.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-03-31 14:06:41 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2002-03-31 14:06:41 +0000
commit7410e7536dab1091fd7df6a9ccc6e65be9b9deaa (patch)
tree91863367516f7421a4786ba4bc9285864bc79a21 /Lib/bdb.py
parent96d1bcced9072d0da5262236ca6639c8e0a51a91 (diff)
downloadcpython-7410e7536dab1091fd7df6a9ccc6e65be9b9deaa.tar.gz
Use docstrings for exception classes
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r--Lib/bdb.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py
index b05ed22091..d5b051b5e3 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: