From 7a51fccaf972c05d58803818b079a79b998977c5 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 30 Aug 2003 19:19:39 +0000 Subject: [PATCH] Removed some debug.printfs. --- test/test_irclib.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/test_irclib.py b/test/test_irclib.py index 19b0125f5..0e752d41b 100644 --- a/test/test_irclib.py +++ b/test/test_irclib.py @@ -102,10 +102,8 @@ class ChannelTestCase(unittest.TestCase): def testPickleCopy(self): c = irclib.Channel() for name in c.__slots__: - debug.printf('%s %s' % (name, getattr(c, name))) c1 = pickle.loads(pickle.dumps(c)) for name in c1.__slots__: - debug.printf('%s %s' % (name, getattr(c1, name))) self.assertEqual(pickle.loads(pickle.dumps(c)), c) def testAddUser(self):