This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: python.org server change causing failures in test_urllib2net test_xxxwithfrag?
Type: Stage:
Components: Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: python-dev, r.david.murray
Priority: high Keywords: buildbot

Created on 2014-03-31 17:31 by r.david.murray, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg215253 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2014-03-31 17:31
It looks like something changed on the python.org server-side that is causing test_urllib2net tests test_urlwithfrag (and, on 3.4, test_redirect_url_withfrag) to fail because the fragment doesn't appear in the response url.  Which is very puzzling.  At least, I can't see any recent changes to urllib or the tests in the hg log.  The errors came to my attention as a result of a 3.4 buildbot run on a couple of completely unrelated patches, but I've confirmed that it also fails on 3.3 now.
msg215254 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2014-03-31 17:35
The URLs in question are:

http://docs.python.org/3.4/glossary.html#term-global-interpreter-lock
http://docs.python.org/2/glossary.html#glossary

Which are now redirecting to https, which would cause a failure regardless of the fragment issue...perhaps the fragment issue is an expected result of the redirect.
msg215256 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-03-31 17:51
New changeset 8263d3c1cf34 by Benjamin Peterson in branch '2.7':
use https docs url (#21115)
http://hg.python.org/cpython/rev/8263d3c1cf34

New changeset fc28ce0983de by Benjamin Peterson in branch '3.2':
use https docs url (#21115)
http://hg.python.org/cpython/rev/fc28ce0983de

New changeset 7ac893834a5e by Benjamin Peterson in branch '3.4':
merge 3.3 (#21115)
http://hg.python.org/cpython/rev/7ac893834a5e

New changeset c0d89375d4c8 by Benjamin Peterson in branch 'default':
merge 3.4 (#21115)
http://hg.python.org/cpython/rev/c0d89375d4c8

New changeset c8bef5664305 by Benjamin Peterson in branch 'default':
merge 3.4 (#21115)
http://hg.python.org/cpython/rev/c8bef5664305
History
Date User Action Args
2022-04-11 14:58:01adminsetgithub: 65314
2014-03-31 17:51:59benjamin.petersonsetstatus: open -> closed
resolution: fixed
2014-03-31 17:51:07python-devsetnosy: + python-dev
messages: + msg215256
2014-03-31 17:35:43r.david.murraysetmessages: + msg215254
2014-03-31 17:31:12r.david.murraycreate