[Python-3000-checkins] r58395 - python/branches/py3k/Lib/test/test_socket_ssl.py

gregory.p.smith python-3000-checkins at python.org
Tue Oct 9 20:35:17 CEST 2007


Author: gregory.p.smith
Date: Tue Oct  9 20:35:13 2007
New Revision: 58395

Modified:
   python/branches/py3k/Lib/test/test_socket_ssl.py
Log:
use a reliable host


Modified: python/branches/py3k/Lib/test/test_socket_ssl.py
==============================================================================
--- python/branches/py3k/Lib/test/test_socket_ssl.py	(original)
+++ python/branches/py3k/Lib/test/test_socket_ssl.py	Tue Oct  9 20:35:13 2007
@@ -41,10 +41,7 @@
 
         # 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)


More information about the Python-3000-checkins mailing list