[Python-checkins] r58348 - python/trunk/Lib/test/test_socket_ssl.py

gregory.p.smith python-checkins at python.org
Sat Oct 6 17:47:37 CEST 2007


Author: gregory.p.smith
Date: Sat Oct  6 17:47:37 2007
New Revision: 58348

Modified:
   python/trunk/Lib/test/test_socket_ssl.py
Log:
Use the host the author likely meant in the first place.  pop.gmail.com is
reliable.  gmail.org is someones personal domain.


Modified: python/trunk/Lib/test/test_socket_ssl.py
==============================================================================
--- python/trunk/Lib/test/test_socket_ssl.py	(original)
+++ python/trunk/Lib/test/test_socket_ssl.py	Sat Oct  6 17:47:37 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-checkins mailing list