diff options
author | Georg Brandl <georg@python.org> | 2006-05-18 06:18:06 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-05-18 06:18:06 +0000 |
commit | bbab671d7dba9fe4c7ddf1ce9f904c21243e9ee3 (patch) | |
tree | 4464a86140806fd46b5bb88de75da93c879622cd /Lib/_LWPCookieJar.py | |
parent | e4751e3cdc8c271f24e46a6155f255b6e33da158 (diff) | |
download | cpython-git-bbab671d7dba9fe4c7ddf1ce9f904c21243e9ee3.tar.gz |
Remove unused import.
Diffstat (limited to 'Lib/_LWPCookieJar.py')
-rw-r--r-- | Lib/_LWPCookieJar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_LWPCookieJar.py b/Lib/_LWPCookieJar.py index 76da942a53..2a4fa7b2f6 100644 --- a/Lib/_LWPCookieJar.py +++ b/Lib/_LWPCookieJar.py @@ -11,7 +11,7 @@ libwww-perl, I hope. """ -import time, re, logging +import time, re from cookielib import (_warn_unhandled_exception, FileCookieJar, LoadError, Cookie, MISSING_FILENAME_TEXT, join_header_words, split_header_words, |