From 2c9b88c86f1b26ddca97f8550ad51d137c713682 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Fri, 8 Jan 2010 18:41:40 +0000 Subject: Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox --- Lib/test/test_whichdb.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Lib/test/test_whichdb.py') 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): -- cgit v1.2.1