Changed nick class not to use __slots__.

This commit is contained in:
Jeremy Fincher 2003-04-20 09:34:42 +00:00
parent 30322c42b6
commit b3e6c686a4
1 changed files with 0 additions and 1 deletions

View File

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