summaryrefslogtreecommitdiffstats
path: root/Lib/urllib.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-03-13 19:47:16 (GMT)
committerSkip Montanaro <skip@pobox.com>2001-03-13 19:47:16 (GMT)
commit44d5e0c418b7ec5bc52d9b06a7ad730c82f5bb61 (patch)
tree6bd933819676e703d343b4823d51fc78106ac5af /Lib/urllib.py
parent1b0b2a4df2387b77c3742e329064c193d003cf66 (diff)
downloadcpython-44d5e0c418b7ec5bc52d9b06a7ad730c82f5bb61.zip
cpython-44d5e0c418b7ec5bc52d9b06a7ad730c82f5bb61.tar.gz
cpython-44d5e0c418b7ec5bc52d9b06a7ad730c82f5bb61.tar.bz2
updated __all__ to include several other names
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r--Lib/urllib.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py
index 7f32428..5572580 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 :-(