summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-07-08 00:11:44 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-07-08 00:11:44 (GMT)
commitb7451cecad01889ad56c2bc1c8b5103274fa0152 (patch)
treecf06d26cfcea2b794cdacc28fd3e0fc7b06a15b4 /Misc/NEWS
parent11f0b41e9de3805441ddd4142df9f6b7f4432ca7 (diff)
downloadcpython-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/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 92131b4..18d03ef 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.