Lines Matching refs:lines
123 enabled. Lines in the input can end in '\n', '\r', or '\r\n', and
127 the other legal values, input lines are only terminated by the given
279 that an IOBase object can be iterated over yielding the lines in a
500 """Return a list of lines from the stream.
502 hint can be specified to control the number of lines read: no more
503 lines will be read if the total size (in bytes/characters) of all
504 lines so far exceeds hint.
511 lines = []
513 lines.append(line)
517 return lines
519 def writelines(self, lines):
521 for line in lines:
1459 enabled. With this enabled, on input, the lines endings '\n', '\r',