]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
What's New in Python 3.5: document socket.sendall() change on timeout
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 28 Jul 2015 23:41:25 +0000 (01:41 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 28 Jul 2015 23:41:25 +0000 (01:41 +0200)
Doc/whatsnew/3.5.rst

index cc100f2eb7effd10080e41bdde1ee092ff3b757b..a7f3dad9477f16cd2734e654c1e7fa5ece5538c9 100644 (file)
@@ -768,6 +768,10 @@ socket
   :meth:`socket.socket.send`.
   (Contributed by Giampaolo Rodola' in :issue:`17552`.)
 
+* The :meth:`socket.socket.sendall` method don't reset the socket timeout
+  anymore each time bytes are received or sent. The socket timeout is now the
+  maximum total duration to send all data.
+
 subprocess
 ----------