[Python-checkins] cpython (merge 3.2 -> 3.3): merge 3.2

benjamin.peterson python-checkins at python.org
Mon Mar 31 19:51:10 CEST 2014


http://hg.python.org/cpython/rev/cb3a8abc0870
changeset:   90071:cb3a8abc0870
branch:      3.3
parent:      90064:b4cb431badac
parent:      90070:fc28ce0983de
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Mar 31 13:46:26 2014 -0400
summary:
  merge 3.2

files:
  Lib/test/test_urllib2net.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py
--- a/Lib/test/test_urllib2net.py
+++ b/Lib/test/test_urllib2net.py
@@ -155,12 +155,12 @@
 ##             self._test_urls(urls, self._extra_handlers()+[bauth, dauth])
 
     def test_urlwithfrag(self):
-        urlwith_frag = "http://docs.python.org/2/glossary.html#glossary"
+        urlwith_frag = "https://docs.python.org/2/glossary.html#glossary"
         with support.transient_internet(urlwith_frag):
             req = urllib.request.Request(urlwith_frag)
             res = urllib.request.urlopen(req)
             self.assertEqual(res.geturl(),
-                    "http://docs.python.org/2/glossary.html#glossary")
+                    "https://docs.python.org/2/glossary.html#glossary")
 
     def test_custom_headers(self):
         url = "http://www.example.com"

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list