summaryrefslogtreecommitdiffstats
path: root/Lib/urlparse.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-10-16 21:21:39 (GMT)
committerFred Drake <fdrake@acm.org>2002-10-16 21:21:39 (GMT)
commitf606e8d705dbd0417e6a8030b426a7bc18dd2614 (patch)
treec6edf0a8399083dcb03b06732c8a7ff536c3b78d /Lib/urlparse.py
parent707056580f7bdc95304f036787db192fe9054155 (diff)
downloadcpython-f606e8d705dbd0417e6a8030b426a7bc18dd2614.zip
cpython-f606e8d705dbd0417e6a8030b426a7bc18dd2614.tar.gz
cpython-f606e8d705dbd0417e6a8030b426a7bc18dd2614.tar.bz2
Added missing entries to __all__.
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r--Lib/urlparse.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py
index 777b42f..1dec261 100644
--- a/Lib/urlparse.py
+++ b/Lib/urlparse.py
@@ -4,7 +4,8 @@ See RFC 1808: "Relative Uniform Resource Locators", by R. Fielding,
UC Irvine, June 1995.
"""
-__all__ = ["urlparse", "urlunparse", "urljoin"]
+__all__ = ["urlparse", "urlunparse", "urljoin", "urldefrag",
+ "urlsplit", "urlunsplit"]
# A classification of schemes ('' means apply by default)
uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'wais', 'file',