From f606e8d705dbd0417e6a8030b426a7bc18dd2614 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 16 Oct 2002 21:21:39 +0000 Subject: Added missing entries to __all__. --- Lib/urlparse.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Lib/urlparse.py') diff --git a/Lib/urlparse.py b/Lib/urlparse.py index 777b42f703..1dec261b8b 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', -- cgit v1.2.1