From 9d4418242757f616ca7041409c7015e166b2c9f9 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Thu, 8 May 2008 19:26:08 +0000 Subject: The mutex module has been deprecated for removal in 3.0. --- Lib/test/test_mutex.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/test/test_mutex.py') diff --git a/Lib/test/test_mutex.py b/Lib/test/test_mutex.py index 6318c70a8e..15e5449231 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): -- cgit v1.2.1