summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2002-11-13 22:00:02 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2002-11-13 22:00:02 (GMT)
commit0e1183ddffd1363ffce6b4792f5b82a8d3a9e5a8 (patch)
tree373e342d062d3b6d81c49aa02a254d92cbdb7926 /Lib/test
parentaffa6b7bf16a998c0e15df60459776cf1c8339b0 (diff)
downloadcpython-0e1183ddffd1363ffce6b4792f5b82a8d3a9e5a8.zip
cpython-0e1183ddffd1363ffce6b4792f5b82a8d3a9e5a8.tar.gz
cpython-0e1183ddffd1363ffce6b4792f5b82a8d3a9e5a8.tar.bz2
remove debugging print
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_sets.py2
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))