Commit 982c018b authored by Antoine Pitrou's avatar Antoine Pitrou

Remove debug hack

parent 677d95c2
...@@ -1492,12 +1492,9 @@ def test_main(verbose=False): ...@@ -1492,12 +1492,9 @@ def test_main(verbose=False):
if thread_info and support.is_resource_enabled('network'): if thread_info and support.is_resource_enabled('network'):
tests.append(ThreadedTests) tests.append(ThreadedTests)
old_verbose = support.verbose
try: try:
support.verbose = True
support.run_unittest(*tests) support.run_unittest(*tests)
finally: finally:
support.verbose = old_verbose
if _have_threads: if _have_threads:
support.threading_cleanup(*thread_info) support.threading_cleanup(*thread_info)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment