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

tim.peters python-checkins at python.org
Sat Apr 1 03:32:19 CEST 2006


Author: tim.peters
Date: Sat Apr  1 03:32:13 2006
New Revision: 43518

Modified:
   python/trunk/Lib/test/test_socket_ssl.py
Log:
Fix stupid typo.


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 Apr  1 03:32:13 2006
@@ -30,7 +30,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