recv(buffer_size)
Read at most buffer_size bytes from the socket’s remote end-point. An empty bytes object implies that the channel has been closed from the other end.
Note that recv()
may raise BlockingIOError
, even though select.select()
or select.poll()
has reported the socket ready for reading.
Please login to continue.