diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-03-05 13:45:38 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-03-05 13:45:38 (GMT) |
commit | 282fed1363894711b3ef2940edd92240008580aa (patch) | |
tree | e7cc19ddf6d4e3993c33c02317d5c50383786509 /Lib/urllib.py | |
parent | 49985638fa33230fdf1ef95613d918fe5e385f5e (diff) | |
download | cpython-282fed1363894711b3ef2940edd92240008580aa.zip cpython-282fed1363894711b3ef2940edd92240008580aa.tar.gz cpython-282fed1363894711b3ef2940edd92240008580aa.tar.bz2 |
Grr, splittag was also missing from __all__.
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r-- | Lib/urllib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py index 085bb33..7f32428 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -30,7 +30,7 @@ import types __all__ = ["urlopen", "URLopener", "FancyURLopener", "urlretrieve", "urlcleanup", "quote", "quote_plus", "unquote", "unquote_plus", - "urlencode", "url2pathname", "pathname2url"] + "urlencode", "url2pathname", "pathname2url", "splittag"] __version__ = '1.15' # XXX This version is not always updated :-( |