import subprocess
import sys
import time
-import _thread
import unittest
from test import support
try:
except ImportError:
_posixsubprocess = None
try:
+ import _thread
import threading
except ImportError:
+ _thread = None
threading = None
import _testcapi
os.chdir(oldcwd)
-@unittest.skipUnless(threading, 'Threading required for this test.')
+@unittest.skipUnless(threading and _thread, 'Threading required for this test.')
class TestThreadState(unittest.TestCase):
@support.reap_threads