summaryrefslogtreecommitdiffstats
path: root/Lib/urllib2.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-04-02 21:13:13 (GMT)
committerGeorg Brandl <georg@python.org>2006-04-02 21:13:13 (GMT)
commit7fff58c097d8ff2c35968c87c00abff3b18478b2 (patch)
tree1f86ff4eb1b0eb440f211c0bd955946f7d0fcd95 /Lib/urllib2.py
parent4696ffbf0935519eb457ea6a786f22631a63ffda (diff)
downloadcpython-7fff58c097d8ff2c35968c87c00abff3b18478b2.zip
cpython-7fff58c097d8ff2c35968c87c00abff3b18478b2.tar.gz
cpython-7fff58c097d8ff2c35968c87c00abff3b18478b2.tar.bz2
Readd urllib.quote import as it doesn't cause any harm.
Diffstat (limited to 'Lib/urllib2.py')
-rw-r--r--Lib/urllib2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib2.py b/Lib/urllib2.py
index 543256d..ec01c8f 100644
--- a/Lib/urllib2.py
+++ b/Lib/urllib2.py
@@ -108,7 +108,7 @@ try:
except ImportError:
from StringIO import StringIO
-from urllib import (unwrap, unquote, splittype, splithost,
+from urllib import (unwrap, unquote, splittype, splithost, quote,
addinfourl, splitport, splitgophertype, splitquery,
splitattr, ftpwrapper, noheaders, splituser, splitpasswd, splitvalue)