]> granicus.if.org Git - python/commitdiff
Remove unused import.
authorGeorg Brandl <georg@python.org>
Thu, 18 May 2006 06:18:06 +0000 (06:18 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 18 May 2006 06:18:06 +0000 (06:18 +0000)
Lib/_LWPCookieJar.py
Lib/_MozillaCookieJar.py

index 76da942a539505127cad08f578580050d0bdf92a..2a4fa7b2f68d21f4c996a0ab4eb21e85c57749ff 100644 (file)
@@ -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,
index d301374148123e4f08fc4812defed9e172d5db3b..1776b930f6d190da46714577ef2331ef6a891605 100644 (file)
@@ -1,6 +1,6 @@
 """Mozilla / Netscape cookie loading / saving."""
 
-import re, time, logging
+import re, time
 
 from cookielib import (_warn_unhandled_exception, FileCookieJar, LoadError,
                        Cookie, MISSING_FILENAME_TEXT)