diff --git a/src/irclib.py b/src/irclib.py index 07ce6f481..c850b4d54 100644 --- a/src/irclib.py +++ b/src/irclib.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ### -# Copyright (c) 2002, Jeremiah Fincher +# Copyright (c) 2002-2004 Jeremiah Fincher # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -734,6 +734,11 @@ class Irc(IrcCommandDispatcher): def die(self): self.zombie = True + # This is useless because it's in world.ircs, so it won't be deleted until + # the program exits. Just figured you might want to know. + #def __del__(self): + # self._reallyDie() + def _reallyDie(self): """Makes the Irc object die. Dead.""" log.info('Irc object for %s dying.' % self.server)