From: Gregory P. Smith Date: Tue, 9 Oct 2007 18:35:13 +0000 (+0000) Subject: use a reliable host X-Git-Tag: v3.0a2~345 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=762d4a4164211076abfc31407523d906aa806686;p=thirdparty%2FPython%2Fcpython.git use a reliable host --- diff --git a/Lib/test/test_socket_ssl.py b/Lib/test/test_socket_ssl.py index 25538697ec1c..00701750d17a 100644 --- a/Lib/test/test_socket_ssl.py +++ b/Lib/test/test_socket_ssl.py @@ -41,10 +41,7 @@ class ConnectedTests(unittest.TestCase): # A service which issues a welcome banner (without need to write # anything). - # XXX ("gmail.org", 995) has been unreliable so far, from time to - # XXX time non-responsive for hours on end (& across all buildbot - # XXX slaves, so that's not just a local thing). - ADDR = "gmail.org", 995 + ADDR = "pop.gmail.com", 995 s = socket.socket() s.settimeout(30.0)