summaryrefslogtreecommitdiffstats
path: root/Lib/urllib.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-03-05 13:41:14 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-03-05 13:41:14 (GMT)
commit49985638fa33230fdf1ef95613d918fe5e385f5e (patch)
treec8dbfbb490df3a9b9cf40a99a224fd3951fb91c6 /Lib/urllib.py
parentf25cf6cceaaf43a6c5e9fe76ef2d9b203c1c05eb (diff)
downloadcpython-49985638fa33230fdf1ef95613d918fe5e385f5e.zip
cpython-49985638fa33230fdf1ef95613d918fe5e385f5e.tar.gz
cpython-49985638fa33230fdf1ef95613d918fe5e385f5e.tar.bz2
Added url2pathname and pathname2url to __all__.
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r--Lib/urllib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py
index 302f707..085bb33 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"]
+ "urlencode", "url2pathname", "pathname2url"]
__version__ = '1.15' # XXX This version is not always updated :-(