final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be
giving it a slight facelift
diff --git a/Lib/urlparse.py b/Lib/urlparse.py
index b9ecee1..1df83d6 100644
--- a/Lib/urlparse.py
+++ b/Lib/urlparse.py
@@ -4,6 +4,8 @@
 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',