[Python-checkins] python/dist/src/Lib/test test_sets.py,1.16,1.17

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Wed, 13 Nov 2002 14:00:05 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv6059

Modified Files:
	test_sets.py 
Log Message:
remove debugging print


Index: test_sets.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_sets.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** test_sets.py	13 Nov 2002 19:34:26 -0000	1.16
--- test_sets.py	13 Nov 2002 22:00:02 -0000	1.17
***************
*** 77,83 ****
      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))
--- 77,81 ----