diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2007-10-06 15:55:25 +0000 |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2007-10-06 15:55:25 +0000 |
commit | 76ee2272ff86ad34cd082bc57b7584d36a9b3f28 (patch) | |
tree | 9866e37f4b9604d24e723cb69c6f2d551078c0bd | |
parent | 4a08ec3db3692025ecac41bedf484a292a30ec29 (diff) | |
download | cpython-git-76ee2272ff86ad34cd082bc57b7584d36a9b3f28.tar.gz |
Backport 58348: use a reliable host in the test.
-rw-r--r-- | Lib/test/test_socket_ssl.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/test_socket_ssl.py b/Lib/test/test_socket_ssl.py index ae6e1daaa1..c6fddf525d 100644 --- a/Lib/test/test_socket_ssl.py +++ b/Lib/test/test_socket_ssl.py @@ -52,10 +52,7 @@ def test_timeout(): # A service which issues a welcome banner (without need to write # anything). - # XXX ("gmail.org", 995) has been unreliable so far, from time to time - # XXX non-responsive for hours on end (& across all buildbot slaves, - # XXX so that's not just a local thing). - ADDR = "gmail.org", 995 + ADDR = "pop.gmail.com", 995 s = socket.socket() s.settimeout(30.0) |