summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test___all__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py
index 596ad79..f4a813a 100644
--- a/Lib/test/test___all__.py
+++ b/Lib/test/test___all__.py
@@ -5,6 +5,12 @@ from test import test_support as support
import os
import sys
+# Setup bsddb warnings
+try:
+ import bsddb
+except ImportError:
+ pass
+
class NoAll(RuntimeError):
pass