Index: Lib/test/test_heapq.py =================================================================== --- Lib/test/test_heapq.py (revision 62662) +++ Lib/test/test_heapq.py (working copy) @@ -337,7 +337,7 @@ def test_iterable_args(self): for f in (self.module.nlargest, self.module.nsmallest): - for s in ("123", "", range(1000), (1, 1.2), range(2000,2200,5)): + for s in ("123", "", (1, 1.2)): for g in (G, I, Ig, L, R): self.assertEqual(list(f(2, g(s))), list(f(2,s))) self.assertEqual(list(f(2, S(s))), [])