[Python-checkins] cpython (merge 3.3 -> default): In test_ssl, threaded tests shouldn't need the network resource to be enabled

antoine.pitrou python-checkins at python.org
Sat Jan 12 22:03:25 CET 2013


http://hg.python.org/cpython/rev/5697373c56c1
changeset:   81468:5697373c56c1
parent:      81466:f79d282c8147
parent:      81467:c276fbd95182
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sat Jan 12 22:00:54 2013 +0100
summary:
  In test_ssl, threaded tests shouldn't need the network resource to be enabled

files:
  Lib/test/test_ssl.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -2166,7 +2166,7 @@
 
     if _have_threads:
         thread_info = support.threading_setup()
-        if thread_info and support.is_resource_enabled('network'):
+        if thread_info:
             tests.append(ThreadedTests)
 
     try:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list