Issue #3806: LockTests in test_imp should be skipped when thread is not available.
Reviewed by Benjamin Peterson.
diff --git a/Lib/test/test_imp.py b/Lib/test/test_imp.py
index 513ca60..c9682ab 100644
--- a/Lib/test/test_imp.py
+++ b/Lib/test/test_imp.py
@@ -56,10 +56,16 @@
 
 
 def test_main():
-    test_support.run_unittest(
-                LockTests,
-                ReloadTests,
-            )
+    tests = [
+        ReloadTests,
+    ]
+    try:
+        import thread
+    except ImportError:
+        pass
+    else:
+        tests.append(LockTests)
+    test_support.run_unittest(*tests)
 
 if __name__ == "__main__":
     test_main()