summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-07-29 01:41:34 +0200
committerVictor Stinner <victor.stinner@gmail.com>2015-07-29 01:41:34 +0200
commita1d9fa326ce3c3a119a86ab1f165cf682bbb594d (patch)
tree53f450f8dce5187beaa904b25db4f8b1ebd20f3d
parent5019d55b526af7e9a239c195637cb0dcda98440f (diff)
parent988101364a1f4083e9c53858a0f13e257fad9a24 (diff)
downloadcpython-git-a1d9fa326ce3c3a119a86ab1f165cf682bbb594d.tar.gz
Merge 3.5 (doc)
-rw-r--r--Doc/whatsnew/3.5.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index cc100f2eb7..a7f3dad947 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -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
----------