[Python-checkins] r43519 - python/branches/release24-maint/Lib/test/test_socket_ssl.py (original) (raw)

tim.peters python-checkins at python.org
Sat Apr 1 03:35:11 CEST 2006


Author: tim.peters Date: Sat Apr 1 03:35:10 2006 New Revision: 43519

Modified: python/branches/release24-maint/Lib/test/test_socket_ssl.py Log: Merge rev 43518 from trunk.

Fix stupid typo.

Modified: python/branches/release24-maint/Lib/test/test_socket_ssl.py

--- python/branches/release24-maint/Lib/test/test_socket_ssl.py (original) +++ python/branches/release24-maint/Lib/test/test_socket_ssl.py Sat Apr 1 03:35:10 2006 @@ -31,7 +31,7 @@ # XXX Tim disabled this test on all platforms, for now, since the # XXX s.connect(("gmail.org", 995)) # XXX line starting timing out on all the builbot slaves. -if 0: not sys.platform.startswith('win'): +if 0: #not sys.platform.startswith('win'): def test_timeout(): test_support.requires('network')


More information about the Python-checkins mailing list