asyncio.StreamReader.readline()

coroutine readline()

Read one line, where “line” is a sequence of bytes ending with \n.

If EOF is received, and \n was not found, the method will return the partial read bytes.

If the EOF was received and the internal buffer is empty, return an empty bytes object.

This method is a coroutine.

doc_python
2016-10-07 17:27:01
Comments
Leave a Comment

Please login to continue.