[Python-checkins] cpython (3.3): 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:23 CET 2013
http://hg.python.org/cpython/rev/c276fbd95182
changeset: 81467:c276fbd95182
branch: 3.3
parent: 81465:2c3f5ed7a5c9
user: Antoine Pitrou <solipsis at pitrou.net>
date: Sat Jan 12 22:00:09 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
@@ -2032,7 +2032,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