Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e71abcc

Browse files
committed
merge 3.2
2 parents 97751fa + 258f3f0 commit e71abcc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/test_urllib2net.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,12 @@ def test_file(self):
155155
## self._test_urls(urls, self._extra_handlers()+[bauth, dauth])
156156

157157
def test_urlwithfrag(self):
158-
urlwith_frag = "https://docs.python.org/2/glossary.html#glossary"
158+
urlwith_frag = "http://www.pythontest.net/index.html#frag"
159159
with support.transient_internet(urlwith_frag):
160160
req = urllib.request.Request(urlwith_frag)
161161
res = urllib.request.urlopen(req)
162162
self.assertEqual(res.geturl(),
163-
"https://docs.python.org/2/glossary.html#glossary")
163+
"http://www.pythontest.net/index.html#frag")
164164

165165
def test_custom_headers(self):
166166
url = "http://www.example.com"

0 commit comments

Comments
 (0)