Removed some debug.printfs.

This commit is contained in:
Jeremy Fincher 2003-08-30 19:19:39 +00:00
parent cdd180a37c
commit 7a51fccaf9

View File

@ -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):