From db5012ab479889adce13da8bcc6bf6ad53aaedeb Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sat, 12 Jan 2013 22:00:09 +0100 Subject: In test_ssl, threaded tests shouldn't need the "network" resource to be enabled --- Lib/test/test_ssl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 7fbc30d..4bf7ad8 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -2032,7 +2032,7 @@ def test_main(verbose=False): if _have_threads: thread_info = support.threading_setup() - if thread_info and support.is_resource_enabled('network'): + if thread_info: tests.append(ThreadedTests) try: -- cgit v0.12