[Python-checkins] cpython (2.7): changeset: 80007:49e4541f2aef

georg.brandl python-checkins at python.org
Sun Oct 28 10:53:31 CET 2012


http://hg.python.org/cpython/rev/d5072bb0fb20
changeset:   80013:d5072bb0fb20
branch:      2.7
parent:      80009:d9ca966cd116
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 28 10:51:35 2012 +0100
summary:
  changeset: 80007:49e4541f2aef
parent: 80003:be83cbf4a789
parent: 80006:32df036e6b75
user: Georg Brandl <georg at python.org>
date: Sun Oct 28 10:50:11 2012 +0100
summary: merge with 3.3

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
@@ -157,12 +157,12 @@
 ##             self._test_urls(urls, self._extra_handlers()+[bauth, dauth])
 
     def test_urlwithfrag(self):
-        urlwith_frag = "http://docs.python.org/glossary.html#glossary"
+        urlwith_frag = "http://docs.python.org/2/glossary.html#glossary"
         with test_support.transient_internet(urlwith_frag):
             req = urllib2.Request(urlwith_frag)
             res = urllib2.urlopen(req)
             self.assertEqual(res.geturl(),
-                    "http://docs.python.org/glossary.html#glossary")
+                    "http://docs.python.org/2/glossary.html#glossary")
 
     def test_fileno(self):
         req = urllib2.Request("http://www.python.org")

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


More information about the Python-checkins mailing list