Lines Matching refs:line
336 line = self._emptystring.join(self.received_lines)
337 print('Data:', repr(line), file=DEBUGSTREAM)
341 if not line:
345 line = str(line, 'utf-8')
346 i = line.find(' ')
348 command = line.upper()
351 command = line[:i].upper()
352 arg = line[i+1:].strip()
356 self.push('500 Error: line too long')
376 for text in line.split(self._linesep):
688 according to RFC 821, Section 4.5.2. In other words, a line
713 for line in lines:
715 if inheaders and not line:
724 line = repr(line)
725 print(line)
748 for line in lines:
749 if not line: