SF bug #1022010: Import random fails
* Complete the previous patch by making sure that the MachineRandom
tests are only run when the underlying resource is available.
diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py
index 0396e58..139e8bf 100644
--- a/Lib/test/test_random.py
+++ b/Lib/test/test_random.py
@@ -490,11 +490,14 @@
self.failUnless(set(random.__all__) <= set(dir(random)))
def test_main(verbose=None):
- testclasses = (WichmannHill_TestBasicOps,
+ testclasses = [WichmannHill_TestBasicOps,
MersenneTwister_TestBasicOps,
- HardwareRandom_TestBasicOps,
TestDistributions,
- TestModule)
+ TestModule]
+
+ if random._urandom is not None:
+ testclasses.append(HardwareRandom_TestBasicOps)
+
test_support.run_unittest(*testclasses)
# verify reference counting