From: Antoine Pitrou Date: Mon, 16 Aug 2010 14:33:42 +0000 (+0000) Subject: Remove debug hack X-Git-Tag: v3.2a2~284 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=982c018b3292e368e3fd808e36d91023296c5255;p=python Remove debug hack --- diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index a4cef88f01..71ba9e1bcb 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -1492,12 +1492,9 @@ def test_main(verbose=False): 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)