Commit 5c75235d authored by Ezio Melotti's avatar Ezio Melotti

Fix deprecation warnings in test_set.py

parent ffd0b889
...@@ -1385,8 +1385,9 @@ class TestCopying(unittest.TestCase): ...@@ -1385,8 +1385,9 @@ class TestCopying(unittest.TestCase):
def test_copy(self): def test_copy(self):
dup = self.set.copy() dup = self.set.copy()
dup_list = list(dup); dup_list.sort() with test_support.check_warnings():
set_list = list(self.set); set_list.sort() dup_list = sorted(dup)
set_list = sorted(self.set)
self.assertEqual(len(dup_list), len(set_list)) self.assertEqual(len(dup_list), len(set_list))
for i in range(len(dup_list)): for i in range(len(dup_list)):
self.failUnless(dup_list[i] is set_list[i]) self.failUnless(dup_list[i] is set_list[i])
...@@ -1394,8 +1395,9 @@ class TestCopying(unittest.TestCase): ...@@ -1394,8 +1395,9 @@ class TestCopying(unittest.TestCase):
def test_deep_copy(self): def test_deep_copy(self):
dup = copy.deepcopy(self.set) dup = copy.deepcopy(self.set)
##print type(dup), repr(dup) ##print type(dup), repr(dup)
dup_list = list(dup); dup_list.sort() with test_support.check_warnings():
set_list = list(self.set); set_list.sort() dup_list = sorted(dup)
set_list = sorted(self.set)
self.assertEqual(len(dup_list), len(set_list)) self.assertEqual(len(dup_list), len(set_list))
for i in range(len(dup_list)): for i in range(len(dup_list)):
self.assertEqual(dup_list[i], set_list[i]) self.assertEqual(dup_list[i], set_list[i])
...@@ -1557,6 +1559,7 @@ class TestVariousIteratorArgs(unittest.TestCase): ...@@ -1557,6 +1559,7 @@ class TestVariousIteratorArgs(unittest.TestCase):
def test_constructor(self): def test_constructor(self):
for cons in (set, frozenset): for cons in (set, frozenset):
for s in ("123", "", range(1000), ('do', 1.2), xrange(2000,2200,5)): for s in ("123", "", range(1000), ('do', 1.2), xrange(2000,2200,5)):
with test_support.check_warnings():
for g in (G, I, Ig, S, L, R): for g in (G, I, Ig, S, L, R):
self.assertEqual(sorted(cons(g(s))), sorted(g(s))) self.assertEqual(sorted(cons(g(s))), sorted(g(s)))
self.assertRaises(TypeError, cons , X(s)) self.assertRaises(TypeError, cons , X(s))
...@@ -1573,6 +1576,7 @@ class TestVariousIteratorArgs(unittest.TestCase): ...@@ -1573,6 +1576,7 @@ class TestVariousIteratorArgs(unittest.TestCase):
if isinstance(expected, bool): if isinstance(expected, bool):
self.assertEqual(actual, expected) self.assertEqual(actual, expected)
else: else:
with test_support.check_warnings():
self.assertEqual(sorted(actual), sorted(expected)) self.assertEqual(sorted(actual), sorted(expected))
self.assertRaises(TypeError, meth, X(s)) self.assertRaises(TypeError, meth, X(s))
self.assertRaises(TypeError, meth, N(s)) self.assertRaises(TypeError, meth, N(s))
...@@ -1587,6 +1591,7 @@ class TestVariousIteratorArgs(unittest.TestCase): ...@@ -1587,6 +1591,7 @@ class TestVariousIteratorArgs(unittest.TestCase):
t = s.copy() t = s.copy()
getattr(s, methname)(list(g(data))) getattr(s, methname)(list(g(data)))
getattr(t, methname)(g(data)) getattr(t, methname)(g(data))
with test_support.check_warnings():
self.assertEqual(sorted(s), sorted(t)) self.assertEqual(sorted(s), sorted(t))
self.assertRaises(TypeError, getattr(set('january'), methname), X(data)) self.assertRaises(TypeError, getattr(set('january'), methname), X(data))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment