diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-08 19:26:08 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-08 19:26:08 (GMT) |
commit | 9d4418242757f616ca7041409c7015e166b2c9f9 (patch) | |
tree | b9c710661263d4a496a94b101ecb0ecf6d5ed897 /Lib/test/test_mutex.py | |
parent | 80bb9d92e3fdf671cb4f8ffeaadcaa1dedbe7876 (diff) | |
download | cpython-9d4418242757f616ca7041409c7015e166b2c9f9.zip cpython-9d4418242757f616ca7041409c7015e166b2c9f9.tar.gz cpython-9d4418242757f616ca7041409c7015e166b2c9f9.tar.bz2 |
The mutex module has been deprecated for removal in 3.0.
Diffstat (limited to 'Lib/test/test_mutex.py')
-rw-r--r-- | Lib/test/test_mutex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_mutex.py b/Lib/test/test_mutex.py index 6318c70..15e5449 100644 --- a/Lib/test/test_mutex.py +++ b/Lib/test/test_mutex.py @@ -1,8 +1,8 @@ -import mutex - import unittest import test.test_support +mutex = test.test_support.import_module("mutex", deprecated=True) + class MutexTest(unittest.TestCase): def setUp(self): |