From: Georg Brandl Date: Sun, 2 Apr 2006 21:13:13 +0000 (+0000) Subject: Readd urllib.quote import as it doesn't cause any harm. X-Git-Tag: v2.5a1~74 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7fff58c097d8ff2c35968c87c00abff3b18478b2;p=thirdparty%2FPython%2Fcpython.git Readd urllib.quote import as it doesn't cause any harm. --- diff --git a/Lib/urllib2.py b/Lib/urllib2.py index 543256d6be8f..ec01c8fd93fe 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)