From 170cd26f70604c27582d4169aea387325dab3def Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 16 Oct 2002 21:24:52 +0000 Subject: [PATCH] Added missing entries to __all__. --- Lib/urlparse.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/urlparse.py b/Lib/urlparse.py index 777b42f70373..1dec261b8b79 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', -- 2.47.3