From b3e6c686a477115f6174a70ea36415ba7d9373e1 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sun, 20 Apr 2003 09:34:42 +0000 Subject: [PATCH] Changed nick class not to use __slots__. --- src/ircutils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ircutils.py b/src/ircutils.py index 26198b09a..dc7050ed8 100644 --- a/src/ircutils.py +++ b/src/ircutils.py @@ -234,7 +234,6 @@ def shrinkList(L, sep='', limit=425): class nick(str): """This class does case-insensitive comparisons of nicks.""" - __slots__ = ('lowered',) def __init__(self, s): self.lowered = toLower(s)