Lines Matching refs:re
25 import binascii, errno, random, re, socket, subprocess, sys, time
84 Continuation = re.compile(r'\+( (?P<data>.*))?')
85 Flags = re.compile(r'.*FLAGS \((?P<flags>[^\)]*)\)')
86 InternalDate = re.compile(r'.*INTERNALDATE "'
91 Literal = re.compile(r'.*{(?P<size>\d+)}$')
92 MapCRLF = re.compile(r'\r\n|\r|\n')
93 Response_code = re.compile(r'\[(?P<type>[A-Z-]+)( (?P<data>[^\]]*))?\]')
94 Untagged_response = re.compile(r'\* (?P<type>[A-Z-]+)( (?P<data>.*))?')
95 Untagged_status = re.compile(r'\* (?P<data>\d+) (?P<type>[A-Z-]+)( (?P<data2>.*))?')
136 the command re-tried.
137 "readonly" exceptions imply the command should be re-tried.
149 mustquote = re.compile(r"[^\w!#$%&'*+,.:;<=>?^`|~-]")
169 self.tagre = re.compile(r'(?P<tag>'
709 # raise self.error('%s unimplemented in IMAP4 (obtain IMAP4rev1 server, or re-code)' % name)
1491 mo = re.match(r'.*"([^"]+)"$', ml)