summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-01-12 21:00:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-01-12 21:00:54 (GMT)
commit6b4e2a9c023c81c785740421cc19e96b56c3224f (patch)
tree49ec40ccbe1da9fc68da692905abd70c41017eb5 /Lib
parente9bb4733d9c7ada5d75d85098bb2e00eb62a2861 (diff)
parentdb5012ab479889adce13da8bcc6bf6ad53aaedeb (diff)
downloadcpython-6b4e2a9c023c81c785740421cc19e96b56c3224f.zip
cpython-6b4e2a9c023c81c785740421cc19e96b56c3224f.tar.gz
cpython-6b4e2a9c023c81c785740421cc19e96b56c3224f.tar.bz2
In test_ssl, threaded tests shouldn't need the network resource to be enabled
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_ssl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 58ea9cd..febebaf 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -2166,7 +2166,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: