diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-04-27 23:55:59 +0000 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-04-27 23:55:59 +0000 |
commit | 6a10281d3359de890519c23d0318742018c843a3 (patch) | |
tree | 71fdda13733f42f287602b72b60260cdc9afa6ba /Lib/test/test_contextlib.py | |
parent | c73a05f775013980a2a0de1c2a65b8542ee0bfa6 (diff) | |
download | cpython-git-6a10281d3359de890519c23d0318742018c843a3.tar.gz |
Issue #7449, last part (11): fix many tests if thread support is disabled
* Use try/except ImportError or test_support.import_module() to import thread
and threading modules
* Add @unittest.skipUnless(threading, ...) to testcases using threads
Diffstat (limited to 'Lib/test/test_contextlib.py')
-rw-r--r-- | Lib/test/test_contextlib.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/test_contextlib.py b/Lib/test/test_contextlib.py index 42b90b612d..f28c95eadb 100644 --- a/Lib/test/test_contextlib.py +++ b/Lib/test/test_contextlib.py @@ -3,9 +3,12 @@ import sys import tempfile import unittest -import threading from contextlib import * # Tests __all__ from test import test_support +try: + import threading +except ImportError: + threading = None class ContextManagerTestCase(unittest.TestCase): @@ -264,6 +267,7 @@ class FileContextTestCase(unittest.TestCase): finally: test_support.unlink(tfn) +@unittest.skipUnless(threading, 'Threading required for this test.') class LockContextTestCase(unittest.TestCase): def boilerPlate(self, lock, locked): |