From 44d5e0c418b7ec5bc52d9b06a7ad730c82f5bb61 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Tue, 13 Mar 2001 19:47:16 +0000 Subject: [PATCH] updated __all__ to include several other names --- Lib/urllib.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Lib/urllib.py b/Lib/urllib.py index 7f324286f9c..55725807017 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -30,7 +30,11 @@ import types __all__ = ["urlopen", "URLopener", "FancyURLopener", "urlretrieve", "urlcleanup", "quote", "quote_plus", "unquote", "unquote_plus", - "urlencode", "url2pathname", "pathname2url", "splittag"] + "urlencode", "url2pathname", "pathname2url", "splittag", + "localhost", "thishost", "ftperrors", "basejoin", "unwrap", + "splittype", "splithost", "splituser", "splitpasswd", "splitport", + "splitnport", "splitquery", "splitattr", "splitvalue", + "splitgophertype", "getproxies"] __version__ = '1.15' # XXX This version is not always updated :-(