summaryrefslogtreecommitdiffhomepage
path: root/libs/future/moves/urllib/request.py
diff options
context:
space:
mode:
Diffstat (limited to 'libs/future/moves/urllib/request.py')
-rw-r--r--libs/future/moves/urllib/request.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/libs/future/moves/urllib/request.py b/libs/future/moves/urllib/request.py
index 60e440a77..972aa4ab5 100644
--- a/libs/future/moves/urllib/request.py
+++ b/libs/future/moves/urllib/request.py
@@ -11,19 +11,8 @@ if PY3:
proxy_bypass,
quote,
request_host,
- splitattr,
- splithost,
- splitpasswd,
- splitport,
- splitquery,
- splittag,
- splittype,
- splituser,
- splitvalue,
thishost,
- to_bytes,
unquote,
- unwrap,
url2pathname,
urlcleanup,
urljoin,
@@ -32,6 +21,18 @@ if PY3:
urlretrieve,
urlsplit,
urlunparse)
+
+ from urllib.parse import (splitattr,
+ splithost,
+ splitpasswd,
+ splitport,
+ splitquery,
+ splittag,
+ splittype,
+ splituser,
+ splitvalue,
+ to_bytes,
+ unwrap)
else:
__future_module__ = True
with suspend_hooks():