diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-08-31 11:38:12 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-08-31 11:38:12 (GMT) |
commit | 33ad28b68dd6caadc1e6cb8f917665d6270e7b25 (patch) | |
tree | a190b6c2a5ba3cf6f8585fc00b1e0e0725c440c5 /Lib/urllib2.py | |
parent | 3294e9d2e73b19a28a450ca7a7f47ece30272a46 (diff) | |
download | cpython-33ad28b68dd6caadc1e6cb8f917665d6270e7b25.zip cpython-33ad28b68dd6caadc1e6cb8f917665d6270e7b25.tar.gz cpython-33ad28b68dd6caadc1e6cb8f917665d6270e7b25.tar.bz2 |
Use multi-line import
Diffstat (limited to 'Lib/urllib2.py')
-rw-r--r-- | Lib/urllib2.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/urllib2.py b/Lib/urllib2.py index d93cba6..f1c94e1 100644 --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -114,9 +114,9 @@ except ImportError: from StringIO import StringIO # not sure how many of these need to be gotten rid of -from urllib import unwrap, unquote, splittype, splithost, \ - addinfourl, splitport, splitgophertype, splitquery, \ - splitattr, ftpwrapper, noheaders, splituser, splitpasswd, splitvalue +from urllib import (unwrap, unquote, splittype, splithost, + addinfourl, splitport, splitgophertype, splitquery, + splitattr, ftpwrapper, noheaders, splituser, splitpasswd, splitvalue) # support for FileHandler, proxies via environment variables from urllib import localhost, url2pathname, getproxies |