[Python-checkins] cpython (merge 3.6 -> default): Merge 3.6 (issue #28089)

yury.selivanov python-checkins at python.org
Mon Dec 12 16:45:26 EST 2016


https://hg.python.org/cpython/rev/0d209cc7ffdc
changeset:   105600:0d209cc7ffdc
parent:      105598:4bd131b028ce
parent:      105599:853e3f4d6cd9
user:        Yury Selivanov <yury at magic.io>
date:        Mon Dec 12 16:45:21 2016 -0500
summary:
  Merge 3.6 (issue #28089)

files:
  Doc/library/asyncio-protocol.rst |  3 +++
  Doc/whatsnew/3.6.rst             |  3 +++
  2 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -25,6 +25,9 @@
 
 The transport classes are :ref:`not thread safe <asyncio-multithreading>`.
 
+.. versionchanged:: 3.6
+   The socket option ``TCP_NODELAY`` is now set by default.
+
 
 BaseTransport
 -------------
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -875,6 +875,9 @@
   but that use asyncio to handle them.
   (Contributed by Jim Fulton in :issue:`27392`.)
 
+* ``TCP_NODELAY`` flag is now set for all TCP transports by default.
+  (Contributed by Yury Selivanov in :issue:`27456`.)
+
 
 binascii
 --------

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list