diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-17 01:51:04 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-17 01:51:04 (GMT) |
commit | 2a2d970ef96cbd52dbf6f4e744d449f34fa9f45f (patch) | |
tree | a0a7c50ddeb13fd8b7f4397ca1f981191f2b4b01 /Lib | |
parent | d10ed8b17936eebd7f769b09836d7a61f07f8bb9 (diff) | |
download | cpython-2a2d970ef96cbd52dbf6f4e744d449f34fa9f45f.zip cpython-2a2d970ef96cbd52dbf6f4e744d449f34fa9f45f.tar.gz cpython-2a2d970ef96cbd52dbf6f4e744d449f34fa9f45f.tar.bz2 |
Remove unused import; reported by Neal Norwitz.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/xmlrpclib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xmlrpclib.py b/Lib/xmlrpclib.py index 4221bcc..fda68e7 100644 --- a/Lib/xmlrpclib.py +++ b/Lib/xmlrpclib.py @@ -124,7 +124,7 @@ Exported functions: name (None if not present). """ -import re, string, sys, time, operator +import re, string, time, operator from types import * |