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: test_license_exists_at_url fails with 3.4.1, wrong/unexpected http error code
Type: Stage: resolved
Components: Tests Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: berker.peksag, doko, larry, ned.deily
Priority: normal Keywords:

Created on 2014-05-19 14:41 by doko, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg218795 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2014-05-19 14:41
======================================================================
FAIL: test_license_exists_at_url (test.test_site.ImportSideEffectTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/scratch/packages/python/3.4/python3.4-3.4.1/Lib/test/test_site.py", line 438, in test_license_exists_at_url
    self.assertEqual(code, 200, msg="Can't find " + url)
AssertionError: 404 != 200 : Can't find http://www.python.org/download/releases/3.4.1/license
msg218805 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2014-05-19 18:46
This is probably related to issue 21534.
msg218820 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-05-19 21:49
The license file page for 3.4.1 now exists.
History
Date User Action Args
2022-04-11 14:58:03adminsetgithub: 65734
2014-05-19 21:49:44ned.deilysetresolution: fixed
2014-05-19 21:49:26ned.deilysetstatus: open -> closed

nosy: + ned.deily
messages: + msg218820

stage: resolved
2014-05-19 18:46:17berker.peksagsetnosy: + berker.peksag, larry
messages: + msg218805
2014-05-19 14:41:50dokocreate