diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-07 12:52:50 +0200 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2015-04-07 12:52:50 +0200 |
| commit | 55e96d5766dd079a097a3ae29300f89d9d988c15 (patch) | |
| tree | 4eaae7c32dd4e2920ab37a68e2135417dff0970c | |
| parent | ed425281fc1bbd7fffedaede15c92b51992281f8 (diff) | |
| download | cpython-55e96d5766dd079a097a3ae29300f89d9d988c15.tar.gz | |
Issue #23881: ftp://gatekeeper.research.compaq.com/ and ftp://ftp.debian.org/
are down, don't use anymore in test_urllib2net
| -rw-r--r-- | Lib/test/test_urllib2net.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py index fc2140809e..17f9d1bdee 100644 --- a/Lib/test/test_urllib2net.py +++ b/Lib/test/test_urllib2net.py @@ -102,8 +102,6 @@ class OtherNetworkTests(unittest.TestCase): 'ftp://ftp.debian.org/debian/README', ('ftp://ftp.debian.org/debian/non-existent-file', None, urllib.error.URLError), - 'ftp://gatekeeper.research.compaq.com/pub/DEC/SRC' - '/research-reports/00README-Legal-Rules-Regs', ] self._test_urls(urls, self._extra_handlers()) @@ -291,7 +289,7 @@ class TimeoutTest(unittest.TestCase): self.addCleanup(u.close) self.assertEqual(u.fp.raw._sock.gettimeout(), 120) - FTP_HOST = "ftp://ftp.mirror.nl/pub/gnu/" + FTP_HOST = 'ftp://ftp.debian.org/debian/' def test_ftp_basic(self): self.assertIsNone(socket.getdefaulttimeout()) |
