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:
commit
540715a369
3 changed files with 12 additions and 1 deletions
|
@ -1272,6 +1272,11 @@ class RequestTests(unittest.TestCase):
|
|||
request.method = 'HEAD'
|
||||
self.assertEqual(request.get_method(), 'HEAD')
|
||||
|
||||
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