From: Victor Stinner Date: Tue, 28 Jul 2015 23:41:25 +0000 (+0200) Subject: What's New in Python 3.5: document socket.sendall() change on timeout X-Git-Tag: v3.5.0rc1~78 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=988101364a1f4083e9c53858a0f13e257fad9a24;p=thirdparty%2FPython%2Fcpython.git What's New in Python 3.5: document socket.sendall() change on timeout --- diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index cc100f2eb7ef..a7f3dad9477f 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 ----------