diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-03-31 13:59:18 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-03-31 13:59:18 (GMT) |
commit | f74e46cf473c3c2197c073cccc3ae4446c9b03a1 (patch) | |
tree | 4f1f1f14cb10bf7e8784e212ae552f9b3aad37ea /Lib | |
parent | 27a353020bef4318896bf16f558ed7e2af76e40a (diff) | |
download | cpython-f74e46cf473c3c2197c073cccc3ae4446c9b03a1.zip cpython-f74e46cf473c3c2197c073cccc3ae4446c9b03a1.tar.gz cpython-f74e46cf473c3c2197c073cccc3ae4446c9b03a1.tar.bz2 |
Derive exception classes from Exception
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/tabnanny.py | 2 | ||||
-rw-r--r-- | Lib/xdrlib.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/tabnanny.py b/Lib/tabnanny.py index a0492e6..7d2ca52 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 7b02c41..2706047 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: |