diff options
author | Skip Montanaro <skip@pobox.com> | 2001-01-20 23:34:12 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-01-20 23:34:12 (GMT) |
commit | eccd02a40d0921fc2953213e71da8a3a79d00e17 (patch) | |
tree | 7f5a2cb83402b600e73e3cdbb71f7181aaa96138 /Lib/getopt.py | |
parent | e78b92a062153ace94989e79d36e04e0997d1710 (diff) | |
download | cpython-eccd02a40d0921fc2953213e71da8a3a79d00e17.zip cpython-eccd02a40d0921fc2953213e71da8a3a79d00e17.tar.gz cpython-eccd02a40d0921fc2953213e71da8a3a79d00e17.tar.bz2 |
more __all__ updates
Diffstat (limited to 'Lib/getopt.py')
-rw-r--r-- | Lib/getopt.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/getopt.py b/Lib/getopt.py index 1bc42bd..82cf04d 100644 --- a/Lib/getopt.py +++ b/Lib/getopt.py @@ -17,6 +17,8 @@ option involved with the exception. # Gerrit Holl <gerrit@nl.linux.org> moved the string-based exceptions # to class-based exceptions. +__all__ = ["GetoptError","error","getopt"] + class GetoptError(Exception): opt = '' msg = '' |