[Python-checkins] r46034 - python/trunk/Lib/_LWPCookieJar.py python/trunk/Lib/_MozillaCookieJar.py

georg.brandl python-checkins at python.org
Thu May 18 08:18:06 CEST 2006


Author: georg.brandl
Date: Thu May 18 08:18:06 2006
New Revision: 46034

Modified:
   python/trunk/Lib/_LWPCookieJar.py
   python/trunk/Lib/_MozillaCookieJar.py
Log:
Remove unused import.



Modified: python/trunk/Lib/_LWPCookieJar.py
==============================================================================
--- python/trunk/Lib/_LWPCookieJar.py	(original)
+++ python/trunk/Lib/_LWPCookieJar.py	Thu May 18 08:18:06 2006
@@ -11,7 +11,7 @@
 
 """
 
-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,

Modified: python/trunk/Lib/_MozillaCookieJar.py
==============================================================================
--- python/trunk/Lib/_MozillaCookieJar.py	(original)
+++ python/trunk/Lib/_MozillaCookieJar.py	Thu May 18 08:18:06 2006
@@ -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)


More information about the Python-checkins mailing list