diff options
author | Guido van Rossum <guido@python.org> | 2000-02-25 16:34:11 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-25 16:34:11 +0000 |
commit | e6674e6fc6c3472ae9e53fb74163fa9a24401d53 (patch) | |
tree | 5bded35dccf9cb3be038a5fed87daf06657c387e /Lib/getopt.py | |
parent | a395ced424e1cba3fc818fd729f273c3709ac62c (diff) | |
download | cpython-git-e6674e6fc6c3472ae9e53fb74163fa9a24401d53.tar.gz |
Gerrit forgot to remove the "import string".
Diffstat (limited to 'Lib/getopt.py')
-rw-r--r-- | Lib/getopt.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/getopt.py b/Lib/getopt.py index 761fc4f944..a6ddf44bb0 100644 --- a/Lib/getopt.py +++ b/Lib/getopt.py @@ -17,8 +17,6 @@ option involved with the exception. # Gerrit Holl <gerrit@nl.linux.org> moved the string-based exceptions # to class-based exceptions. -import string - class GetoptError(Exception): opt = '' msg = '' |