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 /Misc/NEWS | |
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 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -87,6 +87,11 @@ Core and Builtins Library ------- +- Issue #14826: Quote urls in urllib.request.Request identically to how they + are quoted by urllib.request.URLopener. Allows urls to spaces in them to work + transparently with urllib.request.urlopen(...). Patch contributed by Stephen + Thorne. + - Issue #14990: Correctly fail with SyntaxError on invalid encoding declaration. |