Silence deprecation warning in test___all__ caused by an import bsddb.
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py
index f4a813a..2c5dbef 100644
--- a/Lib/test/test___all__.py
+++ b/Lib/test/test___all__.py
@@ -7,8 +7,8 @@
 
 # Setup bsddb warnings
 try:
-    import bsddb
-except ImportError:
+    bsddb = support.import_module('bsddb', deprecated=True)
+except unittest.SkipTest:
     pass