summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-16 14:33:42 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-16 14:33:42 +0000
commite6a62a5f0de55635dd8237a4e296306913f067f4 (patch)
tree79ad84c4f1b61932116d3e95b6d9da360e02f11c
parent7699be56e3fd08e43556ce649708d1c3815af8d4 (diff)
downloadcpython-e6a62a5f0de55635dd8237a4e296306913f067f4.tar.gz
Remove debug hack
-rw-r--r--Lib/test/test_ssl.py3
1 files changed, 0 insertions, 3 deletions
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)