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.
Please login to continue.