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_urllib2net fails because of bad URL
Type: Stage: resolved
Components: Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: doko, loewis
Priority: normal Keywords: buildbot

Created on 2010-04-08 17:33 by loewis, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg102633 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2010-04-08 17:33
Recently, test_urllib2net started failing

======================================================================
ERROR: test_ftp_basic (test.test_urllib2net.TimeoutTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/pybot/buildarea/trunk.klose-ubuntu-sparc/build/Lib/test/test_urllib2net.py", line 227, in test_ftp_basic
    u = _urlopen_with_retry(self.FTP_HOST)
  File "/home/pybot/buildarea/trunk.klose-ubuntu-sparc/build/Lib/test/test_urllib2net.py", line 24, in wrapped
    return _retry_thrice(func, exc, *args, **kwargs)
  File "/home/pybot/buildarea/trunk.klose-ubuntu-sparc/build/Lib/test/test_urllib2net.py", line 20, in _retry_thrice
    raise last_exc
URLError: <urlopen error ftp error: 550 Failed to change directory.>

Apparently, the directory /pub/mirror/gnu does not exist anymore.
msg102635 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2010-04-08 17:41
I changed the URL in r79908.
History
Date User Action Args
2022-04-11 14:56:59adminsetgithub: 52595
2010-04-08 17:41:32loewissetstatus: open -> closed
messages: + msg102635

keywords: + buildbot
resolution: fixed
stage: resolved
2010-04-08 17:33:40loewiscreate