[Python-checkins] r58349 - python/branches/release25-maint/Lib/test/test_socket_ssl.py
gregory.p.smith
python-checkins at python.org
Sat Oct 6 17:55:25 CEST 2007
Author: gregory.p.smith
Date: Sat Oct 6 17:55:25 2007
New Revision: 58349
Modified:
python/branches/release25-maint/Lib/test/test_socket_ssl.py
Log:
Backport 58348: use a reliable host in the test.
Modified: python/branches/release25-maint/Lib/test/test_socket_ssl.py
==============================================================================
--- python/branches/release25-maint/Lib/test/test_socket_ssl.py (original)
+++ python/branches/release25-maint/Lib/test/test_socket_ssl.py Sat Oct 6 17:55:25 2007
@@ -52,10 +52,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 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)
More information about the Python-checkins
mailing list