summaryrefslogtreecommitdiff
path: root/Lib/urlparse.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r--Lib/urlparse.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py
index b9ecee1670..1df83d68d3 100644
--- a/Lib/urlparse.py
+++ b/Lib/urlparse.py
@@ -4,6 +4,8 @@ See RFC 1808: "Relative Uniform Resource Locators", by R. Fielding,
UC Irvine, June 1995.
"""
+__all__ = ["urlparse", "urlunparse", "urljoin"]
+
# A classification of schemes ('' means apply by default)
uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'wais', 'file',
'https', 'shttp',