Home | History | Annotate | Download | only in python2.7

Lines Matching refs:Commands

38 #       Commands
40 Commands = {
108 All IMAP4rev1 commands are supported by methods of the same
111 All arguments to commands are converted to strings, except for
142 most IMAP servers implement a sub-set of the commands available here.
155 self.tagged_commands = {} # Tagged commands awaiting response
212 if attr in Commands:
301 # IMAP4 commands
752 if not command in Commands:
754 if self.state not in Commands[command]:
758 ', '.join(Commands[command])))
777 """Allow simple extension commands
789 if not name in Commands:
790 Commands[name] = (self.state,)
820 if self.state not in Commands[name]:
825 ', '.join(Commands[name])))