From 7ae25e44b90252dac513c52806a4d981bcda8ea1 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 1 Sep 2003 06:00:38 +0000 Subject: [PATCH] Removed stupid for loops that I forgot to remove when I removed the 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 0e752d41b..6bacc8f0c 100644 --- a/test/test_irclib.py +++ b/test/test_irclib.py @@ -101,9 +101,7 @@ class IrcMsgQueueTestCase(unittest.TestCase): class ChannelTestCase(unittest.TestCase): def testPickleCopy(self): c = irclib.Channel() - for name in c.__slots__: c1 = pickle.loads(pickle.dumps(c)) - for name in c1.__slots__: self.assertEqual(pickle.loads(pickle.dumps(c)), c) def testAddUser(self):