From: Georg Brandl Date: Thu, 18 May 2006 06:18:06 +0000 (+0000) Subject: Remove unused import. X-Git-Tag: v2.5b1~623 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bbab671d7dba9fe4c7ddf1ce9f904c21243e9ee3;p=python Remove unused import. --- 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, diff --git a/Lib/_MozillaCookieJar.py b/Lib/_MozillaCookieJar.py index d301374148..1776b930f6 100644 --- a/Lib/_MozillaCookieJar.py +++ b/Lib/_MozillaCookieJar.py @@ -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)