Commit 632b2c6a authored by Jeremy Hylton's avatar Jeremy Hylton

remove debugging print

parent 9725d0dd
......@@ -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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment