Oops, shouldn't have committed, a stray underscore got here.

This commit is contained in:
Jeremy Fincher 2003-12-06 14:18:10 +00:00
parent 12fff1941e
commit b91a1b8941

View File

@ -356,7 +356,7 @@ def unDccIP(i):
L.reverse()
return '.'.join(imap(str, L))
class _IrcString(str):
class IrcString(str):
"""This class does case-insensitive comparison and hashing of nicks."""
def __init__(self, s):
str.__init__(self, intern(s)) # This does nothing, I fear.