| commit | 0b41707dde35b1357427a8109fba10f9e92139b6 | [log] [tgz] |
|---|---|---|
| author | Ezio Melotti <ezio.melotti@gmail.com> | Mon Jun 07 22:00:18 2010 +0000 |
| committer | Ezio Melotti <ezio.melotti@gmail.com> | Mon Jun 07 22:00:18 2010 +0000 |
| tree | 21335b6c7621467f9408b8b59e29efff3e6d19db | |
| parent | c4afe2950ab97fb529da99b511036b8a974b1694 [diff] |
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