From: Neal Norwitz Date: Sun, 31 Mar 2002 13:59:18 +0000 (+0000) Subject: Derive exception classes from Exception X-Git-Tag: v2.3c1~6222 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f74e46cf473c3c2197c073cccc3ae4446c9b03a1;p=python Derive exception classes from Exception --- diff --git a/Lib/tabnanny.py b/Lib/tabnanny.py index a0492e65c9..7d2ca52dea 100755 --- a/Lib/tabnanny.py +++ b/Lib/tabnanny.py @@ -47,7 +47,7 @@ def main(): for arg in args: check(arg) -class NannyNag: +class NannyNag(Exception): def __init__(self, lineno, msg, line): self.lineno, self.msg, self.line = lineno, msg, line def get_lineno(self): diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py index 7b02c41d01..270604799d 100644 --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py @@ -13,7 +13,7 @@ except ImportError: __all__ = ["Error", "Packer", "Unpacker", "ConversionError"] # exceptions -class Error: +class Error(Exception): """Exception class for this module. Use: except xdrlib.Error, var: