Fix test_mutants for dict views.
diff --git a/BROKEN b/BROKEN
index 2967871..6ed9304 100644
--- a/BROKEN
+++ b/BROKEN
@@ -1,2 +1,2 @@
     test_bsddb test_bsddb3 test_compile test_dumbdbm
-    test_importhooks test_iter test_iterlen test_minidom test_mutants
+    test_importhooks test_iter test_iterlen test_minidom
diff --git a/Lib/test/test_mutants.py b/Lib/test/test_mutants.py
index a710248..d40e45f 100644
--- a/Lib/test/test_mutants.py
+++ b/Lib/test/test_mutants.py
@@ -116,7 +116,7 @@
     for i in xrange(numentries):
         d[Horrid(random.choice(candidates))] = \
             Horrid(random.choice(candidates))
-    return d.keys()
+    return list(d.keys())
 
 # Test one pair of randomly generated dicts, each with n entries.
 # Note that dict comparison is trivial if they don't have the same number