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

antoine.pitrou python-checkins at python.org
Mon Aug 16 16:33:42 CEST 2010


Author: antoine.pitrou
Date: Mon Aug 16 16:33:42 2010
New Revision: 84092

Log:
Remove debug hack



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 16:33:42 2010
@@ -1492,12 +1492,9 @@
         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