Lines Matching refs:lines
58 # A deque of full, pushed lines
106 # No new complete lines, wait for more.
109 # Crack into lines, preserving the linesep characters.
123 def pushlines(self, lines):
124 self._lines.extend(lines)
245 # remaining lines in the input are thrown into the message body.
247 lines = []
255 lines.append(line)
256 self._cur.set_payload(EMPTYSTRING.join(lines))
316 lines = []
321 lines.append(line)
322 self._cur.set_payload(EMPTYSTRING.join(lines))
372 # multiple boundary lines that may be following. Our
465 lines = []
470 lines.append(line)
471 self._cur.set_payload(EMPTYSTRING.join(lines))
473 def _parse_headers(self, lines):
474 # Passed a list of lines that make up the headers for the current msg
477 for lineno, line in enumerate(lines):
501 elif lineno == len(lines) - 1:
529 # Done with all the lines, so handle the last header.