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
commit93cf79fde418725f2c2334eb062f9999da9e806d (patch)
tree1db58480081d0459df1265c1e9186d803553c9d2 /Lib/bdb.py
parentf74e46cf473c3c2197c073cccc3ae4446c9b03a1 (diff)
downloadcpython-git-93cf79fde418725f2c2334eb062f9999da9e806d.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: