diff options
Diffstat (limited to 'Lib/test/test_threading.py')
-rw-r--r-- | Lib/test/test_threading.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index ef718ec..5ebc482 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -5,8 +5,8 @@ from test.support import verbose import random import re import sys -import threading -import _thread +_thread = test.support.import_module('_thread') +threading = test.support.import_module('threading') import time import unittest import weakref |