diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py index cf0cd59dc99..9bc3eeba748 100644 --- a/Lib/test/test_sets.py +++ b/Lib/test/test_sets.py @@ -76,9 +76,7 @@ def test_iteration(self): def test_pickling(self): p = pickle.dumps(self.set) - print repr(p) copy = pickle.loads(p) - repr(copy) self.assertEqual(self.set, copy, "%s != %s" % (self.set, copy))