diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-02-20 22:30:21 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-02-20 22:30:21 (GMT) |
commit | 0e7e9aee59809762f929df04c638bf01ebd0ed4d (patch) | |
tree | 37e324ad113282774f7283ad676eea5acc12e427 /Lib/urllib | |
parent | 39440b14cd4481e138bce568d81663315f1f7cc4 (diff) | |
download | cpython-0e7e9aee59809762f929df04c638bf01ebd0ed4d.zip cpython-0e7e9aee59809762f929df04c638bf01ebd0ed4d.tar.gz cpython-0e7e9aee59809762f929df04c638bf01ebd0ed4d.tar.bz2 |
Merged revisions 78270 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78270 | senthil.kumaran | 2010-02-21 03:49:04 +0530 (Sun, 21 Feb 2010) | 4 lines
Merged revisions 78268 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
Diffstat (limited to 'Lib/urllib')
-rw-r--r-- | Lib/urllib/request.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index 8229764..9e02962 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -1426,7 +1426,7 @@ class URLopener: def open(self, fullurl, data=None): """Use URLopener().open(file) instead of open(file, 'r').""" fullurl = unwrap(to_bytes(fullurl)) - fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]") + fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]|") if self.tempcache and fullurl in self.tempcache: filename, headers = self.tempcache[fullurl] fp = open(filename, 'rb') |