Network/IRC/IrcWidget.py

changeset 2960
9453efa25fd5
parent 2528
688c7ef0a5b0
child 2992
dbdf27746da5
--- a/Network/IRC/IrcWidget.py	Sun Sep 29 12:04:35 2013 +0200
+++ b/Network/IRC/IrcWidget.py	Sun Sep 29 14:12:38 2013 +0200
@@ -299,7 +299,7 @@
         """
         Private method to handle a new private connection.
         
-        @param reference to the match object
+        @param match reference to the match object
         @return flag indicating, if the message was handled (boolean)
         """
         # group(1)   sender user name
@@ -510,7 +510,7 @@
         """
         Private method to handle a server message containing a message name.
         
-        @param reference to the match object
+        @param match reference to the match object
         @return flag indicating, if the message was handled (boolean)
         """
         name = match.group(2)
@@ -578,7 +578,7 @@
         """
         Private method to handle a server message containing a numeric code.
         
-        @param reference to the match object
+        @param match reference to the match object
         @return flag indicating, if the message was handled (boolean)
         """
         code = int(match.group(2))
@@ -781,7 +781,7 @@
         """
         Private method to handle a PING message.
         
-        @param reference to the match object
+        @param match reference to the match object
         @return flag indicating, if the message was handled (boolean)
         """
         self.__send("PONG " + match.group(1))
@@ -791,7 +791,7 @@
         """
         Private method to handle a CTCP command.
         
-        @param reference to the match object
+        @param match reference to the match object
         @return flag indicating, if the message was handled (boolean)
         """
         # group(1)   sender user name
@@ -892,8 +892,9 @@
     
     def isChannelName(self, name):
         """
-        PublicisChannelName method to check, if the given name is a channel name.
+        Public method to check, if the given name is a channel name.
         
+        @param name name to check (string)
         @return flag indicating a channel name (boolean)
         """
         if not name:

eric ide

mercurial