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/test | |
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/test')
-rw-r--r-- | Lib/test/test_urllib.py | 5 |
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( |