diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-07-08 00:11:44 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-07-08 00:11:44 (GMT) |
commit | b7451cecad01889ad56c2bc1c8b5103274fa0152 (patch) | |
tree | cf06d26cfcea2b794cdacc28fd3e0fc7b06a15b4 /Lib/urllib | |
parent | 11f0b41e9de3805441ddd4142df9f6b7f4432ca7 (diff) | |
download | cpython-b7451cecad01889ad56c2bc1c8b5103274fa0152.zip cpython-b7451cecad01889ad56c2bc1c8b5103274fa0152.tar.gz cpython-b7451cecad01889ad56c2bc1c8b5103274fa0152.tar.bz2 |
Fix issue14826 - make urllib.request.Request quoted url consistent with URLOpener open method.
Patch contributed by Stephen Thorne.
Diffstat (limited to 'Lib/urllib')
-rw-r--r-- | Lib/urllib/request.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index d6f9f9a..796b700 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -180,7 +180,8 @@ class Request: def __init__(self, url, data=None, headers={}, origin_req_host=None, unverifiable=False): # unwrap('<URL:type://host/path>') --> 'type://host/path' - self.full_url = unwrap(url) + self.full_url = unwrap(to_bytes(url)) + self.full_url = quote(self.full_url, safe="%/:=&?~#+!$,;'@()*[]|") self.full_url, self.fragment = splittag(self.full_url) self.data = data self.headers = {} |