]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added missing entries to __all__.
authorFred Drake <fdrake@acm.org>
Wed, 16 Oct 2002 21:24:52 +0000 (21:24 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 16 Oct 2002 21:24:52 +0000 (21:24 +0000)
Lib/urlparse.py

index 777b42f703735dce43b436ee08e8261e141104f7..1dec261b8b798b2fa9a25487a8c4475295eac380 100644 (file)
@@ -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',