diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2003-12-11 18:37:25 +0000 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2011-08-21 15:53:50 +0200 |
commit | 6acf640ae32bdad55f1a044a20866cb696e3cce7 (patch) | |
tree | d9c2875044c8eec9b4c6903393052192b9851a95 | |
parent | 802d13c92c76c111e38d56219477d0f8ae7d9330 (diff) | |
download | miniircd-6acf640ae32bdad55f1a044a20866cb696e3cce7.tar.gz miniircd-6acf640ae32bdad55f1a044a20866cb696e3cce7.zip |
Remove debug code
-rw-r--r-- | TODO | 2 | ||||
-rwxr-xr-x | miniircd | 12 |
2 files changed, 0 insertions, 14 deletions
@@ -1,5 +1,3 @@ * Use optparse. -* Remove/disable debug code. - * Don't use a set in client.messageChannel. @@ -154,8 +154,6 @@ class Client(object): arguments = string.split(y[0]) if len(y) == 2: arguments.append(y[1]) - if command == "DEBUG": - self.__server.debug() self.__handleCommand(command, arguments) def __passHandler(self, command, arguments): @@ -635,16 +633,6 @@ class Server(object): self.__nicknames = {} # irc_lower(Nickname) --> Client instance. self.__name = socket.getfqdn()[:63] # Server name limit from the RFC. - def debug(self): - print "channels:" - print self.__channels - print - print "clients:" - print self.__clients - print - print "nicknames:" - print self.__nicknames - def daemonize(self): try: pid = os.fork() |