mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fix issue14826 - make urllib.request.Request quoted url consistent with URLOpener open method.
Patch contributed by Stephen Thorne.
This commit is contained in:
parent
11f0b41e9d
commit
b7451cecad
3 changed files with 12 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue