asyncore.dispatcher.recv()

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.

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

Please login to continue.