On 2019-04-01, David Raymond <david.raym...@tomtom.com> wrote:
> https://docs.python.org/3.7/library/socket.html#socket.socket.send
>
> .send returns the number of bytes that it actually succeeded in sending. From 
> the docs: "Applications are responsible for checking that all data has been 
> sent; if only some of the data was transmitted, the application needs to 
> attempt delivery of the remaining data."
>
> You could also switch to using .sendall, which will do retries for you.
>
> But in either case you get a return code which lets you know if everything 
> went through ok.

Tried *sendall* and same result just first word was sent.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to