diff options
author | Skip Montanaro <skip@pobox.com> | 2001-03-01 04:27:19 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-03-01 04:27:19 (GMT) |
commit | 40fc16059f04ee8fda0b5956cc4883eb21ca8f8c (patch) | |
tree | ecfe045bbbf07071e1004fa2fac72c6f1c03633f /Lib/urllib.py | |
parent | 58eadbaf1289f8671e435fb3a00e9e0351abbc16 (diff) | |
download | cpython-40fc16059f04ee8fda0b5956cc4883eb21ca8f8c.zip cpython-40fc16059f04ee8fda0b5956cc4883eb21ca8f8c.tar.gz cpython-40fc16059f04ee8fda0b5956cc4883eb21ca8f8c.tar.bz2 |
final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be
giving it a slight facelift
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r-- | Lib/urllib.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py index 00129c9..2eb90f9 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -28,6 +28,10 @@ import os import sys import types +__all__ = ["urlopen", "URLopener", "FancyURLopener", "urlretrieve", + "urlcleanup", "quote", "quote_plus", "unquote", "unquote_plus", + "urlencode"] + __version__ = '1.15' # XXX This version is not always updated :-( MAXFTPCACHE = 10 # Trim the ftp cache beyond this size |