Elucidating comment.

This commit is contained in:
Jeremy Fincher 2004-08-23 13:03:46 +00:00
parent 5f24e4f6e1
commit b7e030f5e3
1 changed files with 6 additions and 1 deletions

View File

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