From: Jeremy Hylton Date: Wed, 13 Nov 2002 22:00:02 +0000 (+0000) Subject: remove debugging print X-Git-Tag: v2.3c1~3439 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e1183ddffd1363ffce6b4792f5b82a8d3a9e5a8;p=thirdparty%2FPython%2Fcpython.git remove debugging print --- diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py index cf0cd59dc997..9bc3eeba7480 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))