Remove unused import.

This commit is contained in:
Georg Brandl 2006-05-18 06:18:06 +00:00
parent e4751e3cdc
commit bbab671d7d
2 changed files with 2 additions and 2 deletions

View 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,

View 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)