diff options
Diffstat (limited to 'Lib/test/test_sets.py')
-rw-r--r-- | Lib/test/test_sets.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py index cf0cd59..9bc3eeb 100644 --- a/Lib/test/test_sets.py +++ b/Lib/test/test_sets.py @@ -76,9 +76,7 @@ class TestBasicOps(unittest.TestCase): 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)) |