Why not have a recvall method?

陶青云 qingyun.tao at tophant.com
Sun Feb 4 06:26:36 EST 2018


Hello, allThe socket object has a `sendall` method that can send all bytes you specified. Oppositely, socket only has
a recv method. I wonder why there is not a `recvall` method?
To workaround this, I use `f = socket.makefile('rb')`, then `call f.read(n)`
Thanks.


More information about the Python-list mailing list