Fix issue14826 - make urllib.request.Request quoted url consistent with URLOpener open method.
Patch contributed by Stephen Thorne.
diff --git a/Misc/NEWS b/Misc/NEWS
index 92131b4..18d03ef 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -87,6 +87,11 @@
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.