From f0c82f9842c76a0b1c287c20d9e2061bbc134739 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Thu, 22 Feb 2007 04:50:21 +0000 Subject: Fix test_importhooks for dict views. --- BROKEN | 1 - Lib/test/test_importhooks.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/BROKEN b/BROKEN index 80523e7..a0a0165 100644 --- a/BROKEN +++ b/BROKEN @@ -1,2 +1 @@ test_bsddb test_bsddb3 test_compile test_dumbdbm - test_importhooks diff --git a/Lib/test/test_importhooks.py b/Lib/test/test_importhooks.py index 5077d98..66c9258 100644 --- a/Lib/test/test_importhooks.py +++ b/Lib/test/test_importhooks.py @@ -254,7 +254,7 @@ class ImportHooksTestCase(ImportHooksBaseTestCase): mnames = ("colorsys", "urlparse", "distutils.core", "compiler.misc") for mname in mnames: parent = mname.split(".")[0] - for n in sys.modules.keys(): + for n in list(sys.modules.keys()): if n.startswith(parent): del sys.modules[n] for mname in mnames: -- cgit v0.12