summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_whichdb.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-01-30 07:22:54 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-01-30 07:22:54 (GMT)
commita2d465374099c582ef9bc042c2fe1be4776ee641 (patch)
treef1740160c63e081382daea49b1dee4a1eb9b8433 /Lib/test/test_whichdb.py
parent75d3fb1ebb13b143b2840b761b736237bf48f714 (diff)
downloadcpython-a2d465374099c582ef9bc042c2fe1be4776ee641.zip
cpython-a2d465374099c582ef9bc042c2fe1be4776ee641.tar.gz
cpython-a2d465374099c582ef9bc042c2fe1be4776ee641.tar.bz2
#7092: silence py3k warnings for deprecated modules
Diffstat (limited to 'Lib/test/test_whichdb.py')
-rw-r--r--Lib/test/test_whichdb.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/Lib/test/test_whichdb.py b/Lib/test/test_whichdb.py
index 1ce816f..427e323 100644
--- a/Lib/test/test_whichdb.py
+++ b/Lib/test/test_whichdb.py
@@ -7,11 +7,13 @@ import os
import test.test_support
import unittest
import whichdb
-import anydbm
import glob
_fname = test.test_support.TESTFN
+# Silence Py3k warning
+anydbm = test.test_support.import_module('anydbm', deprecated=True)
+
def _delete_files():
# we don't know the precise name the underlying database uses
# so we use glob to locate all names
@@ -37,8 +39,9 @@ for name in anydbm._names:
# we define a new test method for each
# candidate database module.
try:
- mod = __import__(name)
- except ImportError:
+ # Silence Py3k warning
+ mod = test.test_support.import_module(name, deprecated=True)
+ except unittest.SkipTest:
continue
def test_whichdb_name(self, name=name, mod=mod):