From 62a68f2dbe2c33c57d5840f38105dc11e33a77b7 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 20 May 2011 02:29:13 +0200 Subject: [PATCH] test_pydoc: skip PydocServerTest if thread support is disabled --- Lib/test/test_pydoc.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py index bcddff3ec7b..08ba86e697b 100644 --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -20,6 +20,11 @@ from test.support import TESTFN, forget, rmtree, EnvironmentVarGuard, \ from test import pydoc_mod +try: + import threading +except ImportError: + threading = None + # Just in case sys.modules["test"] has the optional attribute __loader__. if hasattr(pydoc_mod, "__loader__"): del pydoc_mod.__loader__ @@ -403,6 +408,7 @@ class TestDescriptions(unittest.TestCase): self.assertIn(expected, pydoc.render_doc(c)) +@unittest.skipUnless(threading, 'Threading required for this test.') class PydocServerTest(unittest.TestCase): """Tests for pydoc._start_server"""