From 282fed1363894711b3ef2940edd92240008580aa Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 5 Mar 2001 13:45:38 +0000 Subject: [PATCH] Grr, splittag was also missing from __all__. --- Lib/urllib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/urllib.py b/Lib/urllib.py index 085bb33698..7f324286f9 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 :-( -- 2.50.1