codecs.StreamReader.readlines()

readlines([sizehint[, keepends]])

Read all lines available on the input stream and return them as a list of lines.

Line-endings are implemented using the codec’s decoder method and are included in the list entries if keepends is true.

sizehint, if given, is passed as the size argument to the stream’s read() method.

doc_python
2016-10-07 17:28:46
Comments
Leave a Comment

Please login to continue.