summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-12-12 21:44:58 (GMT)
committerYury Selivanov <yury@magic.io>2016-12-12 21:44:58 (GMT)
commit3432f2f47c1d3d2e97f13d58aef1bc5a72a8976c (patch)
treec8932bd8248dd1d98902f1ce15624f90a50ff00b /Doc/library
parent10beb3cfef97d162b49b95c538c69c17a20bc910 (diff)
downloadcpython-3432f2f47c1d3d2e97f13d58aef1bc5a72a8976c.zip
cpython-3432f2f47c1d3d2e97f13d58aef1bc5a72a8976c.tar.gz
cpython-3432f2f47c1d3d2e97f13d58aef1bc5a72a8976c.tar.bz2
Issue #28089: Document TCP_NODELAY in asyncio
Initial patch by Mariatta Wijaya.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/asyncio-protocol.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
index c0342f7..3fbf510 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -25,6 +25,9 @@ the transport's kind.
The transport classes are :ref:`not thread safe <asyncio-multithreading>`.
+.. versionchanged:: 3.6
+ The socket option ``TCP_NODELAY`` is now set by default.
+
BaseTransport
-------------