summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-08-03 08:54:36 +0000
committerEzio Melotti <ezio.melotti@gmail.com>2010-08-03 08:54:36 +0000
commitc438d1d021e7275ae5d41b402df885588a73463c (patch)
tree384e552096427a76cf363e81358902401494c180
parent5c75235d3254be293e8288532ec214aa0702c335 (diff)
downloadcpython-git-c438d1d021e7275ae5d41b402df885588a73463c.tar.gz
Fix deprecation warnings in test_sets.py
-rw-r--r--Lib/test/test_sets.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py
index 53c30beab9..9905d1349c 100644
--- a/Lib/test/test_sets.py
+++ b/Lib/test/test_sets.py
@@ -691,8 +691,9 @@ class TestCopying(unittest.TestCase):
def test_deep_copy(self):
dup = copy.deepcopy(self.set)
##print type(dup), repr(dup)
- dup_list = list(dup); dup_list.sort()
- set_list = list(self.set); set_list.sort()
+ with test_support.check_warnings():
+ dup_list = sorted(dup)
+ set_list = sorted(self.set)
self.assertEqual(len(dup_list), len(set_list))
for i in range(len(dup_list)):
self.assertEqual(dup_list[i], set_list[i])