[Python-checkins] r84083 - python/branches/py3k/Lib/test/test_ssl.py

antoine.pitrou python-checkins at python.org
Mon Aug 16 00:16:23 CEST 2010


Author: antoine.pitrou
Date: Mon Aug 16 00:16:23 2010
New Revision: 84083

Log:
Following Ezio's suggestion, force verbose mode on test_ssl to diagnose freezes on 3.x



Modified:
   python/branches/py3k/Lib/test/test_ssl.py

Modified: python/branches/py3k/Lib/test/test_ssl.py
==============================================================================
--- python/branches/py3k/Lib/test/test_ssl.py	(original)
+++ python/branches/py3k/Lib/test/test_ssl.py	Mon Aug 16 00:16:23 2010
@@ -1486,9 +1486,12 @@
         if thread_info and support.is_resource_enabled('network'):
             tests.append(ThreadedTests)
 
+    old_verbose = support.verbose
     try:
+        support.verbose = True
         support.run_unittest(*tests)
     finally:
+        support.verbose = old_verbose
         if _have_threads:
             support.threading_cleanup(*thread_info)
 


More information about the Python-checkins mailing list