Remove the regrtest check that turns any ImportError into a skipped test.
Hopefully all modules whose imports legitimately result in a skipped
test have been properly wrapped by the previous commits.
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 3fa4838..29f84fa 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -580,7 +580,7 @@
print test, "skipped --", msg
sys.stdout.flush()
return -2
- except (ImportError, unittest.SkipTest), msg:
+ except unittest.SkipTest, msg:
if not quiet:
print test, "skipped --", msg
sys.stdout.flush()