summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_urllib.py
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 /Lib/test/test_urllib.py
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 'Lib/test/test_urllib.py')
-rw-r--r--Lib/test/test_urllib.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py
index c6f6f61..69d5438 100644
--- a/Lib/test/test_urllib.py
+++ b/Lib/test/test_urllib.py
@@ -1246,6 +1246,11 @@ class URLopener_Tests(unittest.TestCase):
# ftp.close()
+ def test_quote_url(self):
+ Request = urllib.request.Request
+ request = Request("http://www.python.org/foo bar")
+ self.assertEqual(request.full_url, "http://www.python.org/foo%20bar")
+
def test_main():
support.run_unittest(