Hello, all  
The 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 all `f.read(n)` 
Thanks.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to