summaryrefslogtreecommitdiffstats
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-04-07 03:04:01 (GMT)
committerGuido van Rossum <guido@python.org>2007-04-07 03:04:01 (GMT)
commit756aa93763f30638605246070424798f2601b263 (patch)
tree1c8380057fde788f43aaf966868b212d8e371e8e /Lib/pydoc.py
parent9be5597abfeaa13a1b79c1d888ce6f120458b6ae (diff)
downloadcpython-756aa93763f30638605246070424798f2601b263.zip
cpython-756aa93763f30638605246070424798f2601b263.tar.gz
cpython-756aa93763f30638605246070424798f2601b263.tar.bz2
A class used as an exception should inherit from Exception.
(Should be backported to 2.6, really.)
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-xLib/pydoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index 9551982..a74b97b 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -2187,7 +2187,7 @@ def ispath(x):
def cli():
"""Command-line interface (looks at sys.argv to decide what to do)."""
import getopt
- class BadUsage: pass
+ class BadUsage(Exception): pass
# Scripts don't get the current directory in their path by default.
scriptdir = os.path.dirname(sys.argv[0])