From 0e1183ddffd1363ffce6b4792f5b82a8d3a9e5a8 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Wed, 13 Nov 2002 22:00:02 +0000 Subject: [PATCH] remove debugging print --- Lib/test/test_sets.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py index cf0cd59dc9..9bc3eeba74 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)) -- 2.40.0