summaryrefslogtreecommitdiff
path: root/Lib/_LWPCookieJar.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-31 11:38:12 +0000
committerAndrew M. Kuchling <amk@amk.ca>2004-08-31 11:38:12 +0000
commit9a7f30e71529dce95d41c28587cab6efc3af91ad (patch)
tree51a4b8d0bff782b575febe14e1f531d1e67a4c76 /Lib/_LWPCookieJar.py
parentb635c9a9b5d5e9606c3b0cb90558cfb31d6ffc95 (diff)
downloadcpython-9a7f30e71529dce95d41c28587cab6efc3af91ad.tar.gz
Use multi-line import
Diffstat (limited to 'Lib/_LWPCookieJar.py')
-rw-r--r--Lib/_LWPCookieJar.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/_LWPCookieJar.py b/Lib/_LWPCookieJar.py
index 2eb83a6351..2c8d4564e0 100644
--- a/Lib/_LWPCookieJar.py
+++ b/Lib/_LWPCookieJar.py
@@ -12,9 +12,9 @@ libwww-perl, I hope.
"""
import time, re, logging
-from cookielib import reraise_unmasked_exceptions, FileCookieJar, Cookie, \
- MISSING_FILENAME_TEXT, join_header_words, split_header_words, \
- iso2time, time2isoz
+from cookielib import (reraise_unmasked_exceptions, FileCookieJar, Cookie,
+ MISSING_FILENAME_TEXT, join_header_words, split_header_words,
+ iso2time, time2isoz)
def lwp_cookie_str(cookie):
"""Return string representation of Cookie in an the LWP cookie file format.