summaryrefslogtreecommitdiff
path: root/Lib/test/test_whichdb.py
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-01-08 18:41:40 +0000
committerSenthil Kumaran <orsenthil@gmail.com>2010-01-08 18:41:40 +0000
commit2c9b88c86f1b26ddca97f8550ad51d137c713682 (patch)
tree6fcad4c6634d15b9251bcd3d65f1cf96be6332ad /Lib/test/test_whichdb.py
parent9cb57a4db8840a977391b02a5dba2c6b13d15df1 (diff)
downloadcpython-2c9b88c86f1b26ddca97f8550ad51d137c713682.tar.gz
Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox
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 1ce816f866..427e323f49 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):