From 6acf640ae32bdad55f1a044a20866cb696e3cce7 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Thu, 11 Dec 2003 18:37:25 +0000 Subject: Remove debug code --- TODO | 2 -- miniircd | 12 ------------ 2 files changed, 14 deletions(-) diff --git a/TODO b/TODO index 5507db5..5fe4f2a 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,3 @@ * Use optparse. -* Remove/disable debug code. - * Don't use a set in client.messageChannel. diff --git a/miniircd b/miniircd index 9fdc291..9e4ea64 100755 --- a/miniircd +++ b/miniircd @@ -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() -- cgit v1.2.3