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

Lines Matching defs:QUOTE

27 QUOTE = '> '            # string replies are quoted with
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
129 prefix = QUOTE
174 ## if is_repl and len(line) >= 4 and line[:4] == QUOTE+'--' and line[-3:] != '--\n':
197 if newline[:len(QUOTE)] == QUOTE:
198 newline = newline[len(QUOTE):]
225 mime_char = re.compile('[=\177-\377]') # quote these chars in body
226 mime_header_char = re.compile('[=?\177-\377]') # quote these in header
230 If header is set, quote some extra characters."""
238 # quote 'From ' at the start of a line for stupid mailers
333 if newline[:len(QUOTE)] == QUOTE:
334 newline = newline[len(QUOTE):]