diff options
-rw-r--r-- | BROKEN | 2 | ||||
-rw-r--r-- | Lib/test/test_mutants.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 a710248ac8..d40e45fdb5 100644 --- a/Lib/test/test_mutants.py +++ b/Lib/test/test_mutants.py @@ -116,7 +116,7 @@ def fill_dict(d, candidates, numentries): 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 |