irclib.py | 25 a fairly thorough support for the basic IRC protocol, CTCP, DCC chat, 46 * Decodes CTCP tagging correctly (hopefully); I haven't seen any 47 other IRC client implementation that handles the CTCP 566 command = "ctcp" 575 if command == "ctcp" and m[0] == "ACTION": 631 """Send a CTCP ACTION command.""" 632 self.ctcp("ACTION", target, action) 638 def ctcp(self, ctcptype, target, parameter=""): member in class:ServerConnection 639 """Send a CTCP command.""" 644 """Send a CTCP REPLY command."" [all...] |